Sha256: 6113de2cd1949886ab621d9202736c234a6034f2807f789f48c0cc670b12f02c
Contents?: true
Size: 676 Bytes
Versions: 1
Compression:
Stored size: 676 Bytes
Contents
#!/usr/bin/env ruby require 'pathname' source_path = (Pathname.new(__FILE__).dirname + '../lib').expand_path $LOAD_PATH << source_path require 'flame' if ARGV.empty? puts "Please provide a path for the new application" puts puts "See --help for more info" exit 0 elsif ["-v", "--version"].include? ARGV[0] puts Suspenders::VERSION exit 0 end ARGV << "--skip-javascript" ARGV << "--skip-jbuilder" ARGV << "--database=postgresql" ARGV << "-T" templates_path = File.expand_path(File.join("..", "templates"), File.dirname(__FILE__)) Flame::Generators::App.source_paths << Rails::Generators::AppGenerator.source_root << templates_path Flame::Generators::App.start
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
flamerb-0.1.1 | bin/flame |