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

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

name = ARGV.shift
Rails::Generators.invoke name, ARGV, :behavior => :skip