aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorCheah Chu Yeow <chuyeow@gmail.com>2009-05-13 01:42:51 +0800
committerCheah Chu Yeow <chuyeow@gmail.com>2009-05-13 01:42:51 +0800
commit3c790b631d0c45fe7ccdad9ea15a322e73a6ed7b (patch)
tree4d9e2fe115883f7c70bd42c68930547da5f9617d /activesupport/lib
parenta2cfc13f9ed4123416a87142daca3b03a8e824a0 (diff)
downloadrails-3c790b631d0c45fe7ccdad9ea15a322e73a6ed7b.tar.gz
rails-3c790b631d0c45fe7ccdad9ea15a322e73a6ed7b.tar.bz2
rails-3c790b631d0c45fe7ccdad9ea15a322e73a6ed7b.zip
Remove space between JSON keys and values since we're no longer emitting those.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/json/encoders/hash.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/json/encoders/hash.rb b/activesupport/lib/active_support/json/encoders/hash.rb
index 4771484843..28dd5b5ebc 100644
--- a/activesupport/lib/active_support/json/encoders/hash.rb
+++ b/activesupport/lib/active_support/json/encoders/hash.rb
@@ -8,7 +8,7 @@ class Hash
# the hash keys. For example:
#
# { :name => "Konata Izumi", 'age' => 16, 1 => 2 }.to_json
- # # => {"name": "Konata Izumi", "1": 2, "age": 16}
+ # # => {"name":"Konata Izumi", "1":2, "age":16}
#
# The keys in the JSON string are unordered due to the nature of hashes.
#
@@ -16,10 +16,10 @@ class Hash
# attributes included, and will accept 1 or more hash keys to include/exclude.
#
# { :name => "Konata Izumi", 'age' => 16, 1 => 2 }.to_json(:only => [:name, 'age'])
- # # => {"name": "Konata Izumi", "age": 16}
+ # # => {"name":"Konata Izumi", "age":16}
#
# { :name => "Konata Izumi", 'age' => 16, 1 => 2 }.to_json(:except => 1)
- # # => {"name": "Konata Izumi", "age": 16}
+ # # => {"name":"Konata Izumi", "age":16}
#
# The +options+ also filter down to any hash values. This is particularly
# useful for converting hashes containing ActiveRecord objects or any object