class RubyDep::Travis::RubyVersion

Constants

REGEXP

Public Class Methods

new(travis_version_string) click to toggle source
# File lib/ruby_dep/travis/ruby_version.rb, line 31
def initialize(travis_version_string)
  ruby_version_string = version_for(travis_version_string)
  @version = Gem::Version.new(ruby_version_string)
end

Public Instance Methods

segments() click to toggle source
# File lib/ruby_dep/travis/ruby_version.rb, line 36
def segments
  @version.segments
end