Skip to content

Instantly share code, notes, and snippets.

@charrisbc
Created August 25, 2015 15:18
Show Gist options
  • Save charrisbc/7fd60e8f727bb8c4a4e2 to your computer and use it in GitHub Desktop.
Save charrisbc/7fd60e8f727bb8c4a4e2 to your computer and use it in GitHub Desktop.
Interactor Visitor debugging helper. Include in an Interactor to wrap with calls to binding.pry
module InteractorVisitor
extend ActiveSupport::Concern
included do
around do |interactor|
binding.pry
''
interactor.call
binding.pry
''
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment