class Misfortune::CLI::Runner

Public Class Methods

flavors() click to toggle source
# File lib/misfortune/cli/runner.rb, line 9
def self.flavors
  Misfortune::Flavor::FLAVORS_MAP.keys.join(', ')
end

Public Instance Methods

binge() click to toggle source
# File lib/misfortune/cli/runner.rb, line 29
def binge
  BingeCommand.new(options).run
end
credits() click to toggle source
# File lib/misfortune/cli/runner.rb, line 35
def credits
  CreditsCommand.new(options).run
end
random() click to toggle source
# File lib/misfortune/cli/runner.rb, line 23
def random
  RandomCommand.new(options).run
end