mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[rubygems/rubygems] Autorequire was used by old RubyGems, it is neither supported nor functional.
cadb66037d
This commit is contained in:
parent
a2f0331c4e
commit
a34168f2ac
3 changed files with 0 additions and 29 deletions
|
@ -133,7 +133,6 @@ class Gem::Specification < Gem::BasicSpecification
|
|||
|
||||
@@default_value = {
|
||||
:authors => [],
|
||||
:autorequire => nil,
|
||||
:bindir => 'bin',
|
||||
:cert_chain => [],
|
||||
:date => nil,
|
||||
|
@ -706,13 +705,6 @@ class Gem::Specification < Gem::BasicSpecification
|
|||
|
||||
alias :activated? :activated
|
||||
|
||||
##
|
||||
# Autorequire was used by old RubyGems to automatically require a file.
|
||||
#
|
||||
# Deprecated: It is neither supported nor functional.
|
||||
|
||||
attr_accessor :autorequire # :nodoc:
|
||||
|
||||
##
|
||||
# Sets the default executable for this gem.
|
||||
#
|
||||
|
|
|
@ -369,9 +369,6 @@ http://spdx.org/licenses or '#{Gem::Licenses::NONSTANDARD}' for a nonstandard li
|
|||
warning "description and summary are identical"
|
||||
end
|
||||
|
||||
# TODO: raise at some given date
|
||||
warning "deprecated autorequire specified" if autorequire
|
||||
|
||||
executables.each do |executable|
|
||||
validate_shebang_line_in(executable)
|
||||
end
|
||||
|
|
|
@ -23,7 +23,6 @@ require_paths:
|
|||
- lib
|
||||
files:
|
||||
- lib/keyedlist.rb
|
||||
autorequire: keyedlist
|
||||
author: Florian Gross
|
||||
email: flgr@ccan.de
|
||||
has_rdoc: true
|
||||
|
@ -37,7 +36,6 @@ Gem::Specification.new do |s|
|
|||
s.summary = %q{A Hash which automatically computes keys.}
|
||||
s.files = [%q{lib/keyedlist.rb}]
|
||||
s.require_paths = [%q{lib}]
|
||||
s.autorequire = %q{keyedlist}
|
||||
s.author = %q{Florian Gross}
|
||||
s.email = %q{flgr@ccan.de}
|
||||
end
|
||||
|
@ -679,7 +677,6 @@ end
|
|||
def test_self_attribute_names
|
||||
expected_value = %w[
|
||||
authors
|
||||
autorequire
|
||||
bindir
|
||||
cert_chain
|
||||
date
|
||||
|
@ -2694,21 +2691,6 @@ end
|
|||
end
|
||||
end
|
||||
|
||||
def test_validate_autorequire
|
||||
util_setup_validate
|
||||
|
||||
Dir.chdir @tempdir do
|
||||
@a1.autorequire = 'code'
|
||||
|
||||
use_ui @ui do
|
||||
@a1.validate
|
||||
end
|
||||
|
||||
assert_match "#{w}: deprecated autorequire specified\n",
|
||||
@ui.error, 'error'
|
||||
end
|
||||
end
|
||||
|
||||
def test_validate_dependencies
|
||||
util_setup_validate
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue