Class: RuboCop::TargetRuby Private
- Inherits:
-
Object
- Object
- RuboCop::TargetRuby
- Defined in:
- lib/rubocop/target_ruby.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
The kind of Ruby that code inspected by RuboCop is written in.
Defined Under Namespace
Classes: BundlerLockFile, Default, GemspecFile, RuboCopConfig, RubyVersionFile, Source
Constant Summary collapse
- DEFAULT_VERSION =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
KNOWN_RUBIES.first
Class Method Summary collapse
- .supported_versions ⇒ Object private
Instance Method Summary collapse
-
#initialize(config) ⇒ TargetRuby
constructor
private
A new instance of TargetRuby.
- #rubocop_version_with_support ⇒ Object private
- #source ⇒ Object private
- #supported? ⇒ Boolean private
- #version ⇒ Object private
Constructor Details
#initialize(config) ⇒ TargetRuby
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of TargetRuby.
200 201 202 |
# File 'lib/rubocop/target_ruby.rb', line 200 def initialize(config) @config = config end |
Class Method Details
.supported_versions ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
193 194 195 |
# File 'lib/rubocop/target_ruby.rb', line 193 def self.supported_versions KNOWN_RUBIES end |
Instance Method Details
#rubocop_version_with_support ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
216 217 218 219 220 221 222 |
# File 'lib/rubocop/target_ruby.rb', line 216 def rubocop_version_with_support if supported? RuboCop::Version.version else OBSOLETE_RUBIES[version] end end |
#source ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
204 205 206 |
# File 'lib/rubocop/target_ruby.rb', line 204 def source @source ||= SOURCES.each.lazy.map { |c| c.new(@config) }.detect(&:version) end |
#supported? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
212 213 214 |
# File 'lib/rubocop/target_ruby.rb', line 212 def supported? KNOWN_RUBIES.include?(version) end |
#version ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
208 209 210 |
# File 'lib/rubocop/target_ruby.rb', line 208 def version source.version end |