class Kicker

Constants

VERSION

Attributes

clear_console[RW]
full_chain[W]
latency[RW]
paths[RW]
post_process_chain[W]
pre_process_chain[W]
process_chain[W]
quiet[RW]
silent[RW]
startup_chain[W]

Public Class Methods

clear_console?() click to toggle source
# File lib/kicker/options.rb, line 15
def clear_console?
  @clear_console
end
full_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 36
def full_chain
  @full_chain ||= CallbackChain.new([pre_process_chain, process_chain, post_process_chain])
end
osx?() click to toggle source
# File lib/kicker/options.rb, line 20
def osx?
  RUBY_PLATFORM.downcase.include?("darwin")
end
post_process_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 31
def post_process_chain
  @post_process_chain ||= CallbackChain.new
end
pre_process_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 21
def pre_process_chain
  @pre_process_chain ||= CallbackChain.new
end
process_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 26
def process_chain
  @process_chain ||= CallbackChain.new
end
quiet?() click to toggle source
# File lib/kicker/options.rb, line 11
def quiet?
  @quiet
end
silent?() click to toggle source
# File lib/kicker/options.rb, line 7
def silent?
  @silent
end
startup_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 16
def startup_chain
  @startup_chain ||= CallbackChain.new
end

Public Instance Methods

full_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 57
def full_chain
  self.class.full_chain
end
post_process_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 53
def post_process_chain
  self.class.post_process_chain
end
pre_process_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 45
def pre_process_chain
  self.class.pre_process_chain
end
process_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 49
def process_chain
  self.class.process_chain
end
startup_chain() click to toggle source
# File lib/kicker/callback_chain.rb, line 41
def startup_chain
  self.class.startup_chain
end