mirror of
https://github.com/wahyd4/ruby-sdk.git
synced 2026-08-09 04:46:10 +10:00
18 lines
392 B
Ruby
Executable File
18 lines
392 B
Ruby
Executable File
# -*- encoding: utf-8 -*-
|
|
|
|
module Qiniu
|
|
module Version
|
|
MAJOR = 6
|
|
MINOR = 5
|
|
PATCH = 1
|
|
# Returns a version string by joining <tt>MAJOR</tt>, <tt>MINOR</tt>, and <tt>PATCH</tt> with <tt>'.'</tt>
|
|
#
|
|
# Example
|
|
#
|
|
# Version.to_s # '1.0.2'
|
|
def self.to_s
|
|
[MAJOR, MINOR, PATCH].join('.')
|
|
end
|
|
end # Version
|
|
end # module Qiniu
|