1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/commands/destroy.rb

12 lines
326 B
Ruby
Raw Normal View History

require 'rails/generators'
#if no argument/-h/--help is passed to rails destroy command, then
#it generates the help associated.
if [nil, "-h", "--help"].include?(ARGV.first)
Rails::Generators.help 'destroy'
2009-07-02 05:08:07 -04:00
exit
end
name = ARGV.shift
2012-10-14 06:03:39 -04:00
Rails::Generators.invoke name, ARGV, behavior: :revoke, destination_root: Rails.root