Sha256: 4873d67d0aa07ca29e3da46f62404114fdd3ce4d3aa2df2c921b051374c968bf
Contents?: true
Size: 585 Bytes
Versions: 32
Compression:
Stored size: 585 Bytes
Contents
#!/usr/bin/env ruby require 'pathname' source_path = (Pathname.new(__FILE__).dirname + '../lib').expand_path $LOAD_PATH << source_path require 'jetfuel' if ['create', '--create'].include? ARGV[0] ARGV.shift puts "[WARNING] the jetfuel create argument is deprecated. Just use `jetfuel #{ARGV.join}` instead" end templates_root = File.expand_path(File.join("..", "templates"), File.dirname(__FILE__)) Jetfuel::AppGenerator.source_root templates_root Jetfuel::AppGenerator.source_paths << Rails::Generators::AppGenerator.source_root << templates_root Jetfuel::AppGenerator.start
Version data entries
32 entries across 32 versions & 1 rubygems