Skip to content

Commit

Permalink
Remove description for s
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Guenther committed Aug 1, 2012
1 parent 44c216e commit 3b84a6d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions padrino-core/lib/padrino-core/cli/base.rb
Expand Up @@ -10,7 +10,7 @@ class Base < Thor
class_option :environment, :type => :string, :aliases => "-e", :required => true, :default => :development, :desc => "Padrino Environment"
class_option :help, :type => :boolean, :desc => "Show help usage"

desc "start", "Starts the Padrino application"
desc "start", "Starts the Padrino application (alternatively use 's')"
method_option :server, :type => :string, :aliases => "-a", :desc => "Rack Handler (default: autodetect)"
method_option :host, :type => :string, :aliases => "-h", :required => true, :default => "0.0.0.0", :desc => "Bind to HOST address"
method_option :port, :type => :numeric, :aliases => "-p", :required => true, :default => 3000, :desc => "Use PORT"
Expand All @@ -24,7 +24,6 @@ def start
Padrino::Cli::Adapter.start(options)
end

desc "s", "Starts the Padrino application"
def s
invoke :start
end
Expand Down

0 comments on commit 3b84a6d

Please sign in to comment.