Module: RailsDevelopmentBoost::DependenciesPatch::InstrumentationPatch::Files
- Includes:
- Instrumenter
- Defined in:
- lib/rails_development_boost/dependencies_patch/instrumentation_patch.rb
Instance Method Summary collapse
- #schedule_decorator_file_with_instrumentation(file) ⇒ Object
- #schedule_modified_file_with_instrumentation(file) ⇒ Object
Methods included from Instrumenter
Instance Method Details
#schedule_decorator_file_with_instrumentation(file) ⇒ Object
92 93 94 95 |
# File 'lib/rails_development_boost/dependencies_patch/instrumentation_patch.rb', line 92 def schedule_decorator_file_with_instrumentation(file) boost_log('SCHEDULE_DECORATOR_FILE', "#{file.boost_inspect}") schedule_decorator_file_without_instrumentation(file) end |
#schedule_modified_file_with_instrumentation(file) ⇒ Object
87 88 89 90 |
# File 'lib/rails_development_boost/dependencies_patch/instrumentation_patch.rb', line 87 def schedule_modified_file_with_instrumentation(file) boost_log('CHANGED', "#{file.boost_inspect}") boost_log_nested { schedule_modified_file_without_instrumentation(file) } end |