diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/json/json.gemspec | 2 | ||||
-rw-r--r-- | ext/json/lib/json/version.rb | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ Sun Apr 12 18:12:07 2015 SHIBATA Hiroshi <[email protected]> * ext/json/json.gemspec, lib/rdoc/rdoc.gemspec: added gemspec directly. @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "json" - s.version = "1.8.1" s.summary = "This json is bundled with Ruby" s.executables = [] s.files = ["json.rb", "json/add/bigdecimal.rb", "json/add/complex.rb", "json/add/core.rb", "json/add/date.rb", "json/add/date_time.rb", "json/add/exception.rb", "json/add/ostruct.rb", "json/add/range.rb", "json/add/rational.rb", "json/add/regexp.rb", "json/add/struct.rb", "json/add/symbol.rb", "json/add/time.rb", "json/common.rb", "json/ext.rb", "json/ext/generator.bundle", "json/ext/parser.bundle", "json/generic_object.rb", "json/version.rb"] @@ -1,6 +1,6 @@ module JSON # JSON version - VERSION = '1.8.1' VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: |