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 f54f14398d Add a lot of YARD docs to various classes.
Also switch to Markdown as the markup language, rather than rdoc.
2017-05-30 01:37:35 -04:00

13 lines
352 B
Ruby

module RestClient
# The current RestClient version array
VERSION_INFO = [2, 1, 0, 'rc1'] unless defined?(self::VERSION_INFO)
# The current RestClient version string
VERSION = VERSION_INFO.map(&:to_s).join('.') unless defined?(self::VERSION)
# @return [String] The current RestClient version string
def self.version
VERSION
end
end