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

9 lines
208 B
Ruby
Raw Normal View History

module RestClient
2017-04-28 01:12:17 -04:00
VERSION_INFO = [2, 1, 0, 'rc1'] unless defined?(self::VERSION_INFO)
VERSION = VERSION_INFO.map(&:to_s).join('.') unless defined?(self::VERSION)
def self.version
VERSION
end
end