Class: Dependabot::Bundler::FileUpdater::GitPinReplacer
- Inherits:
-
Object
- Object
- Dependabot::Bundler::FileUpdater::GitPinReplacer
- Defined in:
- lib/dependabot/bundler/file_updater/git_pin_replacer.rb
Defined Under Namespace
Classes: Rewriter
Instance Attribute Summary collapse
-
#dependency ⇒ Object
readonly
Returns the value of attribute dependency.
-
#new_pin ⇒ Object
readonly
Returns the value of attribute new_pin.
Instance Method Summary collapse
-
#initialize(dependency:, new_pin:) ⇒ GitPinReplacer
constructor
A new instance of GitPinReplacer.
- #rewrite(content) ⇒ Object
Constructor Details
#initialize(dependency:, new_pin:) ⇒ GitPinReplacer
Returns a new instance of GitPinReplacer.
14 15 16 17 |
# File 'lib/dependabot/bundler/file_updater/git_pin_replacer.rb', line 14 def initialize(dependency:, new_pin:) @dependency = dependency @new_pin = new_pin end |
Instance Attribute Details
#dependency ⇒ Object (readonly)
Returns the value of attribute dependency.
11 12 13 |
# File 'lib/dependabot/bundler/file_updater/git_pin_replacer.rb', line 11 def dependency @dependency end |
#new_pin ⇒ Object (readonly)
Returns the value of attribute new_pin.
12 13 14 |
# File 'lib/dependabot/bundler/file_updater/git_pin_replacer.rb', line 12 def new_pin @new_pin end |
Instance Method Details
#rewrite(content) ⇒ Object
19 20 21 22 23 24 25 26 27 |
# File 'lib/dependabot/bundler/file_updater/git_pin_replacer.rb', line 19 def rewrite(content) buffer = Parser::Source::Buffer.new("(gemfile_content)") buffer.source = content ast = Parser::CurrentRuby.new.parse(buffer) Rewriter .new(dependency: dependency, new_pin: new_pin) .rewrite(buffer, ast) end |