Sha256: aa9caa698eb2168f1a485496b9752b5dd52ad477442cc1343113199c95951b14

Contents?: true

Size: 439 Bytes

Versions: 1

Compression:

Stored size: 439 Bytes

Contents

#!/usr/bin/env ruby
require 'pathname'

source_path = (Pathname.new(__FILE__).dirname + '../lib').expand_path
$LOAD_PATH << source_path

require 'eac_rails_base0/app_generator/generator'

if ARGV.empty?
  puts "Please provide a path for the new application"
  puts
  puts "See --help for more info"
  exit 1
elsif ['-v', '--version'].include? ARGV[0]
  puts Suspenders::VERSION
  exit 0
end

::EacRailsBase0::AppGenerator::Generator.start

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eac_rails_base0-0.5.0 exe/eac_rails_base0_app