diff options
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | json.gemspec | 2 | ||||
-rw-r--r-- | json_pure.gemspec | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,7 @@ -2011-06-17 (1.5.3) +2011-06-20 (1.5.3) * Alias State#configure method as State#merge to increase duck type synonymy with Hash. + * Add as_json methods in json/add/core, so rails can create its json objects + the new way. 2011-05-11 (1.5.2) * Apply documentation patch by Cory Monty <cory.monty@gmail.com>. * Add gemspecs for json and json_pure. diff --git a/json.gemspec b/json.gemspec index 28dbb32..caf6eb0 100644 --- a/json.gemspec +++ b/json.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Florian Frank"] - s.date = %q{2011-06-17} + s.date = %q{2011-06-20} s.description = %q{This is a JSON implementation as a Ruby extension in C.} s.email = %q{flori@ping.de} s.executables = ["edit_json.rb", "prettify_json.rb"] diff --git a/json_pure.gemspec b/json_pure.gemspec index cc03814..81490af 100644 --- a/json_pure.gemspec +++ b/json_pure.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Florian Frank"] - s.date = %q{2011-06-17} + s.date = %q{2011-06-20} s.description = %q{This is a JSON implementation in pure Ruby.} s.email = %q{flori@ping.de} s.executables = ["edit_json.rb", "prettify_json.rb"] |