Class: RubyGemsRequirementsSystem::Platform::RedHatEnterpriseLinux
- Defined in:
- lib/rubygems-requirements-system/platform/red-hat-enterprise-linux.rb
Direct Known Subclasses
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Fedora
#default_system_packages, #valid_system_package?, #valid_system_repository?
Methods inherited from Base
#default_system_packages, #initialize, #install, #valid_system_package?, #valid_system_repository?
Constructor Details
This class inherits a constructor from RubyGemsRequirementsSystem::Platform::Base
Class Method Details
Instance Method Details
#target?(platform) ⇒ Boolean
30 31 32 33 34 35 36 37 38 39 |
# File 'lib/rubygems-requirements-system/platform/red-hat-enterprise-linux.rb', line 30 def target?(platform) case platform when "rhel" true when "redhat" # For backward compatibility true else super end end |