class method
self.without_parsing_cache
Ruby on Rails edge
Since edgeSignature
self.without_parsing_cache()
No documentation comment.
Source
# File activerecord/lib/active_record/fixtures.rb, line 547
def without_parsing_cache
parsing_cache_was = @@parsing_cache
@@parsing_cache = {}
yield
ensure
@@parsing_cache = parsing_cache_was
end
Defined in activerecord/lib/active_record/fixtures.rb line 547
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::FixtureSet