Module: DevSuite::Performance
- Defined in:
- lib/dev_suite/performance.rb,
lib/dev_suite/performance/data.rb,
lib/dev_suite/performance/config.rb,
lib/dev_suite/performance/analyzer.rb,
lib/dev_suite/performance/profiler.rb,
lib/dev_suite/performance/reporter.rb,
lib/dev_suite/performance/data/data.rb,
lib/dev_suite/performance/config/config.rb,
lib/dev_suite/performance/profiler/base.rb,
lib/dev_suite/performance/reporter/base.rb,
lib/dev_suite/performance/profiler/memory.rb,
lib/dev_suite/performance/reporter/simple.rb,
lib/dev_suite/performance/profiler_manager.rb,
lib/dev_suite/performance/reporter/helpers.rb,
lib/dev_suite/performance/data/memory_usage.rb,
lib/dev_suite/performance/profiler/profiler.rb,
lib/dev_suite/performance/reporter/reporter.rb,
lib/dev_suite/performance/config/configuration.rb,
lib/dev_suite/performance/profiler/execution_time.rb,
lib/dev_suite/performance/reporter/helpers/stat_mappings.rb,
lib/dev_suite/performance/reporter/helpers/table_builder.rb
Defined Under Namespace
Modules: Config, Data, Profiler, Reporter Classes: Analyzer, ProfilerManager
Class Method Summary collapse
Class Method Details
.analyze(description: "Block", &block) ⇒ Object
36 37 38 39 |
# File 'lib/dev_suite/performance/analyzer.rb', line 36 def analyze(description: "Block", &block) analyzer = Analyzer.new(description: description) analyzer.analyze(&block) end |