Skip to content

Instantly share code, notes, and snippets.

@ymendel
Created May 1, 2009 19:59
Show Gist options
  • Save ymendel/105221 to your computer and use it in GitHub Desktop.
Save ymendel/105221 to your computer and use it in GitHub Desktop.
>> v = Gem::Version.new('1.1.pre')
=> #<Gem::Version "1.1.pre">
>> Gem::Requirement.new('>= 1.1').satisfied_by?(v)
=> false
>> Gem::Requirement.new('< 1.1').satisfied_by?(v)
=> true
>> Gem::Requirement.new('~> 1.1').satisfied_by?(v)
=> false
>> Gem::Requirement.new('~> 1.0').satisfied_by?(v)
=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment