mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-04-02 10:05:50 +00:00
8 lines
318 B
Ruby
8 lines
318 B
Ruby
module SimpleOAuth
|
|
module Version
|
|
MAJOR = 0 unless defined? ::SimpleOAuth::Version::MAJOR
|
|
MINOR = 1 unless defined? ::SimpleOAuth::Version::MINOR
|
|
PATCH = 5 unless defined? ::SimpleOAuth::Version::PATCH
|
|
STRING = [MAJOR, MINOR, PATCH].join('.') unless defined? ::SimpleOAuth::Version::STRING
|
|
end
|
|
end
|