Flowdock
method

parse

Importance_1
v1_9_3_392 - Show latest stable - 0 notes - Class: Requirement
parse(obj) public

Parse obj, returning an [op, version] pair. obj can be a String or a Gem::Version.

If obj is a String, it can be either a full requirement specification, like ">= 1.2", or a simple version number, like "1.2".

parse("> 1.0")                 # => [">", "1.0"]
parse("1.0")                   # => ["=", "1.0"]
parse(Gem::Version.new("1.0")) # => ["=,  "1.0"]
Show source
Register or log in to add new notes.