rails--rails/railties/lib/commands.rb

5 lines
191 B
Ruby
Raw Normal View History

if %w( console perform process runner server ).include?(ARGV.first)
require "#{File.dirname(__FILE__)}/process/#{ARGV.shift}"
else
puts "Choose: console perform process runner server"
end