lib/nanoc/cli/commands/compile.rb in nanoc-4.7.14 vs lib/nanoc/cli/commands/compile.rb in nanoc-4.8.0
- old
+ new
@@ -3,18 +3,16 @@
usage 'compile [options]'
summary 'compile items of this site'
description <<~EOS
Compile all items of the current site.
EOS
-flag nil, :profile, 'profile compilation' if Nanoc::Feature.enabled?(Nanoc::Feature::PROFILER)
flag nil, :diff, 'generate diff'
require_relative 'compile_listeners/abstract'
require_relative 'compile_listeners/debug_printer'
require_relative 'compile_listeners/diff_generator'
require_relative 'compile_listeners/file_action_printer'
-require_relative 'compile_listeners/stack_prof_profiler'
require_relative 'compile_listeners/timing_recorder'
module Nanoc::CLI::Commands
class Compile < ::Nanoc::CLI::CommandRunner
attr_accessor :listener_classes
@@ -41,10 +39,9 @@
protected
def default_listener_classes
[
- Nanoc::CLI::Commands::CompileListeners::StackProfProfiler,
Nanoc::CLI::Commands::CompileListeners::DiffGenerator,
Nanoc::CLI::Commands::CompileListeners::DebugPrinter,
Nanoc::CLI::Commands::CompileListeners::TimingRecorder,
Nanoc::CLI::Commands::CompileListeners::FileActionPrinter,
]