mirror of
https://github.com/rest-client/rest-client.git
synced 2022-11-09 13:49:40 -05:00
8 lines
148 B
Ruby
8 lines
148 B
Ruby
module RestClient
|
|
VERSION_INFO = [2, 1, 0].freeze
|
|
VERSION = VERSION_INFO.map(&:to_s).join('.').freeze
|
|
|
|
def self.version
|
|
VERSION
|
|
end
|
|
end
|