class Composer::Package::LinkConstraint::BaseConstraint

Public Instance Methods

matches(provider) click to toggle source
# File lib/composer/package/link_constraint/base_constraint.rb, line 17
def matches(provider)
  raise NotImplementedError
end
pretty_string() click to toggle source
# File lib/composer/package/link_constraint/base_constraint.rb, line 25
def pretty_string
  raise NotImplementedError
end
pretty_string=(pretty_string) click to toggle source
# File lib/composer/package/link_constraint/base_constraint.rb, line 21
def pretty_string=(pretty_string)
  raise NotImplementedError
end
to_s() click to toggle source
# File lib/composer/package/link_constraint/base_constraint.rb, line 29
def to_s
  raise NotImplementedError
end