Skip to content

Commit

Permalink
Rename to StepsPrependManager
Browse files Browse the repository at this point in the history
  • Loading branch information
waiting-for-dev committed Oct 25, 2023
1 parent 7f0530b commit 927178e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/dry/operation/class_context/prepend_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def void
def call(method:)
return self unless @methods_to_prepend.include?(method)

@klass.include(MethodPrepender.new(method: method))
@klass.include(StepsMethodPrepender.new(method: method))
@prepended_methods += [method]
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Dry
class Operation
module ClassContext
# @api private
class MethodPrepender < Module
class StepsMethodPrepender < Module
def initialize(method:)
super()
@method = method
Expand Down

0 comments on commit 927178e

Please sign in to comment.