зеркало из https://github.com/github/ruby.git
24 строки
885 B
Ruby
24 строки
885 B
Ruby
begin
|
|
require_relative "lib/forwardable/version"
|
|
rescue LoadError
|
|
# for Ruby core repository
|
|
require_relative "version"
|
|
end
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "forwardable"
|
|
spec.version = Forwardable::VERSION
|
|
spec.authors = ["Keiju ISHITSUKA"]
|
|
spec.email = ["keiju@ruby-lang.org"]
|
|
|
|
spec.summary = %q{Provides delegation of specified methods to a designated object.}
|
|
spec.description = %q{Provides delegation of specified methods to a designated object.}
|
|
spec.homepage = "https://github.com/ruby/forwardable"
|
|
spec.license = "BSD-2-Clause"
|
|
|
|
spec.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.rb", "lib/forwardable/version.rb"]
|
|
spec.bindir = "exe"
|
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
spec.require_paths = ["lib"]
|
|
end
|