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