Sha256: 2ec30696c73d0f223b9522918134fd33e9136ea88d6c9a62a271925c32daa952
Contents?: true
Size: 623 Bytes
Versions: 2
Compression:
Stored size: 623 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' require 'templater' $:.unshift File.join(File.dirname(__FILE__), '..', 'lib') require 'gigantron/generators/helper' require 'gigantron/generators/task_generator' require 'gigantron/generators/model_generator' require 'gigantron/generators/migration_generator' require 'gigantron/generators/new_project_generator' module GigantronGenerators extend Templater::Manifold add :project, NewProjectGenerator add :model, ModelGenerator add :migration, MigrationGenerator add :task, TaskGenerator end GigantronGenerators.run_cli Dir.pwd, 'gigantron', '0.1.5', ARGV
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
michaelbarton-gigantron-0.1.6 | bin/gigantron |
michaelbarton-gigantron-0.1.7 | bin/gigantron |