/usr/lib/ruby/1.8/twitter/version.rb is in libtwitter-ruby1.8 0.7.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # 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 = 7
REVISION = 0
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
|