Sha256: 1af6da7fcb02b8e3efe5941c1f0a6a712d4c212c6c3fc9230eeb95258f718d99

Contents?: true

Size: 799 Bytes

Versions: 2

Compression:

Stored size: 799 Bytes

Contents

#
# This file was ported to ruby from Composer php source code file.
# Original Source: Composer\Package\AliasPackage.php
#
# (c) Nils Adermann <naderman@naderman.de>
#     Jordi Boggiano <j.boggiano@seld.be>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

module Composer
  module Package
    module LinkConstraint
      class BaseConstraint

        def matches(provider)
          raise NotImplementedError
        end

        def pretty_string=(pretty_string)
          raise NotImplementedError
        end

        def pretty_string
          raise NotImplementedError
        end

        def to_s
          raise NotImplementedError
        end

      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
php-composer-0.3.0 lib/composer/package/link_constraint/base_constraint.rb
php-composer-0.2.0 lib/composer/package/link_constraint/base_constraint.rb