aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/engine/commands.rb
blob: 33a7cd58053aa352183836db635913f2327ec79f (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
30
31
32
33
34
35
36
37
require 'active_support/core_ext/object/inclusion'

ARGV << '--help' if ARGV.empty?

aliases = {
  "g" => "generate"
}

command = ARGV.shift
command = aliases[command] || command

case command
when 'generate'
  require 'rails/generators'

  require ENGINE_PATH
  engine = ::Rails::Engine.find(ENGINE_ROOT)
  engine.load_generators

  require 'rails/commands/generate'

when '--version', '-v'
  ARGV.unshift '--version'
  require 'rails/commands/application'

else
  puts "Error: Command not recognized" unless command.in?(['-h', '--help'])
  puts <<-EOT
Usage: rails COMMAND [ARGS]

The common rails commands available for engines are:
 generate    Generate new code (short-cut alias: "g")

All commands can be run with -h for more information.
  EOT
  exit(1)
end