mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 12:14:51 +00:00
7 lines
144 B
Ruby
7 lines
144 B
Ruby
module URI
|
|
# :stopdoc:
|
|
VERSION = '1.1.1'.freeze
|
|
VERSION_CODE = VERSION.split('.').map{|s| s.rjust(2, '0')}.join.freeze
|
|
# :startdoc:
|
|
end
|