aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/destroy.rb
blob: 92a06ebdd8488c8d8bc9b4ef489304a36667663b (plain) (blame)
1
2
3
4
5
6
7
8
9
require 'rails/generators'

if ARGV.size == 0
  Rails::Generators.help
  exit
end

name = ARGV.shift
Rails::Generators.invoke name, ARGV, :behavior => :revoke, :destination_root => Rails.root