#!/usr/bin/env ruby # frozen_string_literal: true require "pathname" source_path = Pathname.new(__FILE__).dirname.join("../lib").expand_path $LOAD_PATH << source_path require "rsg" 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 "RSG: #{RSG::VERSION}" puts "Rails: #{Rails::VERSION}" exit 0 end Rsg::AppGenerator.start