class AppCommand::GenerateLambda

Public Instance Methods

execute() click to toggle source
# File lib/routes/generate/generate_lambda.rb, line 5
def execute

    begin

        @opts = command_options
        @args = arguments

        opts_validate
        opts_routing

    rescue => e

        Blufin::Terminal::print_exception(e)

    end

end
opts_routing() click to toggle source

Generates a favicon.ico file (using ImageMagick) @return void

# File lib/routes/generate/generate_lambda.rb, line 31
def opts_routing

    # TODO - Figure out structure of configuration files.
    # TODO - Scan configuration files + validate.
    # TODO - Generate boiler-plate code.

    raise RuntimeError, 'Not yet implemented!'

end
opts_validate() click to toggle source
# File lib/routes/generate/generate_lambda.rb, line 23
def opts_validate

    # TODO - Validate something?

end