aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/commands/destroy.rb
blob: 204477b7388607d4cc87fb65f694e4dc6ac57352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require "#{RAILS_ROOT}/config/environment"
require 'generators'

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

name = ARGV.shift
Rails::Generators.invoke name, ARGV, :revoke