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
Andy Brody d9cb98b4b7 Version 2.1.0.rc1
Freeze the version constants, and don't bother checking whether they're
already defined (that usually indicates a problem with requires).
2017-07-05 04:29:59 -04:00

8 lines
155 B
Ruby

module RestClient
VERSION_INFO = [2, 1, 0, 'rc1'].freeze
VERSION = VERSION_INFO.map(&:to_s).join('.').freeze
def self.version
VERSION
end
end