module Rye::VERSION

  1. lib/rye.rb
Parent: Rye

Attributes

path [R]
version [R]

Public Class methods

inspect ()
[show source]
# File lib/rye.rb, line 66
def inspect()  version              end
prerelease? ()
[show source]
# File lib/rye.rb, line 63
def prerelease?() false end
read_version ()
[show source]
# File lib/rye.rb, line 59
def read_version
  return if @version
  @version = File.read(path).strip!
end
to_a ()
[show source]
# File lib/rye.rb, line 64
def to_a()     version.split('.')   end
to_s ()
[show source]
# File lib/rye.rb, line 65
def to_s()     version              end