1 # version.rb contains <tt>Twitter::Version</tt> that provides helper
2 # methods related to versioning of the <tt>Twitter4R</tt> project.
4 module Twitter::Version #:nodoc:
9 # Returns X.Y.Z formatted version string
11 "#{MAJOR}.#{MINOR}.#{REVISION}"
14 # Returns X-Y-Z formatted version name
16 "#{MAJOR}_#{MINOR}_#{REVISION}"