class Composer::Package::LinkConstraint::EmptyConstraint

Public Instance Methods

matches(provider) click to toggle source
# File lib/composer/package/link_constraint/empty_constraint.rb, line 16
def matches(provider)
  true
end
pretty_string() click to toggle source
# File lib/composer/package/link_constraint/empty_constraint.rb, line 24
def pretty_string
  return to_s unless @pretty_string
  @pretty_string
end
pretty_string=(pretty_string) click to toggle source
# File lib/composer/package/link_constraint/empty_constraint.rb, line 20
def pretty_string=(pretty_string)
   @pretty_string = pretty_string
end
to_s() click to toggle source
# File lib/composer/package/link_constraint/empty_constraint.rb, line 29
def to_s
  '[]'
end