lib/appbundler/cli.rb in appbundler-0.9.0 vs lib/appbundler/cli.rb in appbundler-0.10.0
- old
+ new
@@ -1,8 +1,8 @@
-require 'appbundler/version'
-require 'appbundler/app'
-require 'mixlib/cli'
+require "appbundler/version"
+require "appbundler/app"
+require "mixlib/cli"
module Appbundler
class CLI
include Mixlib::CLI
@@ -19,14 +19,14 @@
Your bundled application must already be gem installed. Generated binstubs
will point to the gem, not your working copy.
BANNER
option :version,
- :short => '-v',
- :long => '--version',
- :description => 'Show appbundler version',
+ :short => "-v",
+ :long => "--version",
+ :description => "Show appbundler version",
:boolean => true,
- :proc => lambda {|v| $stdout.puts("Appbundler Version: #{::Appbundler::VERSION}")},
+ :proc => lambda { |v| $stdout.puts("Appbundler Version: #{::Appbundler::VERSION}") },
:exit => 0
option :help,
:short => "-h",
:long => "--help",