mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32217 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10 lines
151 B
Ruby
10 lines
151 B
Ruby
module Rake
|
|
module Version
|
|
NUMBERS = [
|
|
MAJOR = 0,
|
|
MINOR = 9,
|
|
BUILD = 2,
|
|
]
|
|
end
|
|
VERSION = Version::NUMBERS.join('.')
|
|
end
|