blob: 7675d3b3d1e233363493438d161f7cf6c7973cfd (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | require "rails/generators"
require "rails/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
 |