Module: Potatochop

Defined in:
lib/potatochop.rb,
lib/potatochop/web.rb,
lib/potatochop/spud.rb,
lib/potatochop/version.rb,
lib/potatochop/cli_parser.rb,
lib/potatochop/github_interface.rb,
lib/potatochop/file_system_interface.rb

Defined Under Namespace

Classes: CliParser, FileSystemInterface, GithubInterface, Spud, Web

Constant Summary collapse

VERSION =
"0.0.4"

Class Method Summary collapse

Class Method Details

.start_up(args) ⇒ Object



12
13
14
15
# File 'lib/potatochop.rb', line 12

def self.start_up(args)
  options = Potatochop::CliParser.parse(args)
  Potatochop::Web.run!(:tater => Potatochop::Spud.new(options[:interface]))
end