Class: Dependabot::Bundler::FileUpdater::RubyRequirementSetter
- Inherits:
-
Object
- Object
- Dependabot::Bundler::FileUpdater::RubyRequirementSetter
- Extended by:
- T::Sig
- Defined in:
- lib/dependabot/bundler/file_updater/ruby_requirement_setter.rb
Defined Under Namespace
Classes: GemfileRewriter
Constant Summary collapse
- RUBY_VERSIONS =
%w( 1.8.7 1.9.3 2.0.0 2.1.10 2.2.10 2.3.8 2.4.10 2.5.9 2.6.9 2.7.6 3.0.6 3.1.6 3.2.8 3.3.8 3.4.7 ).freeze
- LANGUAGE =
"ruby"
Instance Attribute Summary collapse
-
#gemspec ⇒ Object
readonly
Returns the value of attribute gemspec.
Instance Method Summary collapse
-
#initialize(gemspec:) ⇒ RubyRequirementSetter
constructor
A new instance of RubyRequirementSetter.
- #rewrite(content) ⇒ Object
Constructor Details
#initialize(gemspec:) ⇒ RubyRequirementSetter
Returns a new instance of RubyRequirementSetter.
27 28 29 |
# File 'lib/dependabot/bundler/file_updater/ruby_requirement_setter.rb', line 27 def initialize(gemspec:) @gemspec = gemspec end |
Instance Attribute Details
#gemspec ⇒ Object (readonly)
Returns the value of attribute gemspec.
24 25 26 |
# File 'lib/dependabot/bundler/file_updater/ruby_requirement_setter.rb', line 24 def gemspec @gemspec end |
Instance Method Details
#rewrite(content) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/dependabot/bundler/file_updater/ruby_requirement_setter.rb', line 32 def rewrite(content) return content unless gemspec_declares_ruby_requirement? buffer = Parser::Source::Buffer.new("(gemfile_content)") buffer.source = content ast = Parser::CurrentRuby.new.parse(buffer) if declares_ruby_version?(ast) GemfileRewriter.new( ruby_version: ruby_version ).rewrite(buffer, ast) else "ruby '#{ruby_version}'\n" + content end end |