Method: Webby::Apps::Main#run
- Defined in:
- lib/webby/apps/main.rb
#run(args) ⇒ Object
Runs the main webby application. The command line arguments are passed in to this method as an array of strings. The command line arguments are parsed to figure out which rake task to invoke.
29 30 31 32 33 34 35 |
# File 'lib/webby/apps/main.rb', line 29 def run( args ) args = args.dup parse args init args self.__send__(*@command) end |