Sha256: 33578e288e22dd5e85de340ed7c626443c087752357166293f6c1b844ea532cf
Contents?: true
Size: 455 Bytes
Versions: 1
Compression:
Stored size: 455 Bytes
Contents
# version.rb contains <tt>Twitter::Version</tt> that provides helper # methods related to versioning of the <tt>Twitter4R</tt> project. module Twitter::Version #:nodoc: MAJOR = 0 MINOR = 5 REVISION = 1 class << self # Returns X.Y.Z formatted version string def to_version "#{MAJOR}.#{MINOR}.#{REVISION}" end # Returns X-Y-Z formatted version name def to_name "#{MAJOR}_#{MINOR}_#{REVISION}" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
twitter4r-0.5.1 | lib/twitter/version.rb |