Module: PaperTrail::RSpec::Helpers::InstanceMethods
- Defined in:
- lib/paper_trail/frameworks/rspec/helpers.rb
Overview
Included in the RSpec configuration in ‘frameworks/rspec.rb`
Instance Method Summary collapse
-
#with_versioning ⇒ Object
enable versioning for specific blocks (at instance-level).
Instance Method Details
#with_versioning ⇒ Object
enable versioning for specific blocks (at instance-level)
9 10 11 12 13 14 15 |
# File 'lib/paper_trail/frameworks/rspec/helpers.rb', line 9 def with_versioning was_enabled = ::PaperTrail.enabled? ::PaperTrail.enabled = true yield ensure ::PaperTrail.enabled = was_enabled end |