mirror of
https://github.com/wahyd4/ruby-sdk.git
synced 2026-08-19 01:36:13 +10:00
20 lines
385 B
Ruby
Executable File
20 lines
385 B
Ruby
Executable File
# -*- encoding: utf-8 -*-
|
|
|
|
module Qiniu
|
|
module RS
|
|
module Version
|
|
MAJOR = 3
|
|
MINOR = 4
|
|
PATCH = 7
|
|
# 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
|
|
end
|
|
end
|