Sha256: 134aa24a8fd491cd4395adcbab17e127004f7a38b93a3c8db21bf0813eb7b0f8

Contents?: true

Size: 385 Bytes

Versions: 3

Compression:

Stored size: 385 Bytes

Contents

namespace :performance do
  desc 'Generate all profiling and performance reports'
  task all: [
    'benchmark:all',
    'profile:call_tree:all',
    'profile:memory:all',
  ]

  namespace :all do
    desc 'Generate and store all profiling and performance reports'
    task save: [
      'benchmark:all:save',
      'profile:call_tree:all',
      'profile:memory:all',
    ]
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rambling-trie-0.9.3 lib/rambling/trie/tasks/performance/all.rb
rambling-trie-0.9.2 lib/rambling/trie/tasks/performance/all.rb
rambling-trie-0.9.1 lib/rambling/trie/tasks/performance/all.rb