Skip to content

Commit

Permalink
[padrino-core] fix padrino 'g' 'gen' commands
Browse files Browse the repository at this point in the history
  • Loading branch information
achiurizo committed Jun 8, 2011
1 parent aeceed9 commit ece7211
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions padrino-core/lib/padrino-core/cli/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ def generate(*args)
end

desc "g", "Executes the Padrino generator with given options."
def g(*args)
invoke(:generate, *args)
def g
invoke :generate
end

desc "gen", "Executes the Padrino generator with given options."
def gen(*args)
invoke(:generate, *args)
def gen
invoke :generate
end

desc "version", "Show current Padrino Version"
Expand Down

0 comments on commit ece7211

Please sign in to comment.