Merge pull request #268 from vanstee/escape-attribute-names

Support "unsymbolizable" strings as attribute names
This commit is contained in:
Steve Klabnik 2013-04-15 17:25:24 -07:00
commit 3433eca4d3
3 changed files with 20 additions and 1 deletions

View File

@ -451,7 +451,7 @@ module ActiveModel
method << " h = {}\n"
_attributes.each do |name,key|
method << " h[:#{key}] = read_attribute_for_serialization(:#{name}) if send #{INCLUDE_METHODS[name].inspect}\n"
method << " h[:\"#{key}\"] = read_attribute_for_serialization(:\"#{name}\") if send #{INCLUDE_METHODS[name].inspect}\n"
end
method << " h\nend"

View File

@ -51,6 +51,17 @@ class SerializerTest < ActiveModel::TestCase
}, hash)
end
def test_attributes_method_with_unsymbolizable_key
user = User.new
user_serializer = UserAttributesWithUnsymbolizableKeySerializer.new(user, :scope => {})
hash = user_serializer.as_json
assert_equal({
:user_attributes_with_unsymbolizable_key => { :first_name => "Jose", :"last-name" => "Valim", :ok => true }
}, hash)
end
def test_attribute_method_with_name_as_serializer_prefix
object = SomeObject.new("something")
object_serializer = SomeSerializer.new(object, {})

View File

@ -70,6 +70,14 @@ class UserAttributesWithSomeKeySerializer < ActiveModel::Serializer
end
end
class UserAttributesWithUnsymbolizableKeySerializer < ActiveModel::Serializer
attributes :first_name, :last_name => :"last-name"
def serializable_hash
attributes.merge(:ok => true).merge(options[:scope])
end
end
class DefaultUserSerializer < ActiveModel::Serializer
attributes :first_name, :last_name
end