1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/lib/restclient/version.rb
2015-04-15 12:01:37 -07:00

8 lines
210 B
Ruby

module RestClient
VERSION_INFO = [2, 0, 0, 'alpha'] unless defined?(self::VERSION_INFO)
VERSION = VERSION_INFO.map(&:to_s).join('.') unless defined?(self::VERSION)
def self.version
VERSION
end
end