Sha256: 0b545c0e388927d8377595c10cce857819e359aec78dcd0cd5f6aa88cca97794

Contents?: true

Size: 763 Bytes

Versions: 8

Compression:

Stored size: 763 Bytes

Contents

module Hippo
    module Command

        class Generate < Thor

            long_desc Command.usage_from_file("generate_model")
            method_options( GenerateMigration::OPTIONS )
            register Command::GenerateMigration, 'migration', 'migration [NAME] ...FIELDS', 'Creates a new migration'
            long_desc Command.usage_from_file("generate_model")
            method_options( GenerateModel::OPTIONS )
            register Command::GenerateModel, 'model', 'model [NAME] ...FIELDS', 'Creates a new model'

            long_desc Command.usage_from_file("generate_screen")
            method_options( GenerateScreen::OPTIONS )
            register Command::GenerateScreen, 'screen', 'screen [NAME]', 'Creates a new Screen'
        end

    end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hippo-fw-0.9.9 lib/hippo/command/generate.rb
hippo-fw-0.9.8 lib/hippo/command/generate.rb
hippo-fw-0.9.7 lib/hippo/command/generate.rb
hippo-fw-0.9.6 lib/hippo/command/generate.rb
hippo-fw-0.9.5 lib/hippo/command/generate.rb
hippo-fw-0.9.4 lib/hippo/command/generate.rb
hippo-fw-0.9.3 lib/hippo/command/generate.rb
hippo-fw-0.9.2 lib/hippo/command/generate.rb