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/commands.rb
2005-10-06 02:05:36 +00:00

17 lines
No EOL
494 B
Ruby

commands = Dir["#{File.dirname(__FILE__)}/commands/*.rb"].collect { |file_path| File.basename(file_path).split(".").first }
if commands.include?(ARGV.first)
require "#{File.dirname(__FILE__)}/commands/#{ARGV.shift}"
else
puts <<-USAGE
The 'run' provides a unified access point for all the default Rails' commands.
Usage: ./script/run <command> [OPTIONS]
Examples:
./script/run generate controller Admin
./script/run process reaper
USAGE
puts "Choose: #{commands.join(", ")}"
end