diff options
| author | Misty De Meo | 2016-01-01 17:11:57 -0400 |
|---|---|---|
| committer | Misty De Meo | 2016-01-01 20:10:34 -0400 |
| commit | d4db443b1926b97660399f361e0b7a98ea24c608 (patch) | |
| tree | 8df7bcd35a5fc917b108ca0ca4992bc5cbcffe82 /Library/Homebrew/requirements | |
| parent | 31501e7b388367eb66c964512756766bfd7b5dc5 (diff) | |
| download | brew-d4db443b1926b97660399f361e0b7a98ea24c608.tar.bz2 | |
LanguageModuleRequirement: remove rbx support
This test wasn't running by default, so we missed that it wasn't
actually being executed - or that it was failing when running in the
testing environment.
As far as I can tell this is not, and has not, been used either in core
or in any tap, third party or otherwise, so just remove the feature and
its test.
Diffstat (limited to 'Library/Homebrew/requirements')
| -rw-r--r-- | Library/Homebrew/requirements/language_module_requirement.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Library/Homebrew/requirements/language_module_requirement.rb b/Library/Homebrew/requirements/language_module_requirement.rb index 50430185e..113530d02 100644 --- a/Library/Homebrew/requirements/language_module_requirement.rb +++ b/Library/Homebrew/requirements/language_module_requirement.rb @@ -31,7 +31,6 @@ class LanguageModuleRequirement < Requirement when :python then %W[/usr/bin/env python -c import\ #{@import_name}] when :python3 then %W[/usr/bin/env python3 -c import\ #{@import_name}] when :ruby then %W[/usr/bin/env ruby -rubygems -e require\ '#{@import_name}'] - when :rbx then %W[/usr/bin/env rbx -rubygems -e require\ '#{@import_name}'] end end @@ -46,7 +45,6 @@ class LanguageModuleRequirement < Requirement when :perl then "cpan -i" when :python then "pip install" when :python3 then "pip3 install" - when :rbx then "rbx gem install" when :ruby then "gem install" end end |
