blob: e92daf9be62543e9f5b77bade9187b2f5b6ed823 (
plain) (
tree)
|
|
require_relative "../../generators"
require_relative "../../generators/rails/app/app_generator"
module Rails
module Generators
class AppGenerator # :nodoc:
# We want to exit on failure to be kind to other libraries
# This is only when accessing via CLI
def self.exit_on_failure?
true
end
end
end
module Command
class ApplicationCommand < Base # :nodoc:
hide_command!
def help
perform # Punt help output to the generator.
end
def perform(*args)
Rails::Generators::AppGenerator.start \
Rails::Generators::ARGVScrubber.new(args).prepare!
end
end
end
end
|