mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00

e22b2f2bdfe6a9b0. this fixes some bugs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
8 lines
271 B
Ruby
8 lines
271 B
Ruby
module JSON
|
|
# JSON version
|
|
VERSION = '1.5.0'
|
|
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
|
|
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
|
|
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
|
|
VERSION_BUILD = VERSION_ARRAY[2] # :nodoc:
|
|
end
|