Replace CLI class with a more suitable Application class

This commit is contained in:
2017-10-23 13:58:19 +01:00
parent ee4d363d3a
commit 6812e52dee
8 changed files with 199 additions and 127 deletions

View File

@@ -1,5 +1,7 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
$LOAD_PATH.unshift(File.expand_path('../../lib', File.realpath(__FILE__)))
require 'bunnyrun'
BunnyRun::CLI.run(ARGV)
BunnyRun::Application.run(argv: ARGV)