Sha256: f991b972ebe9a881fe104f7258770e809cd01f474e2baa979ee4d943092d3efe
Contents?: true
Size: 910 Bytes
Versions: 2
Compression:
Stored size: 910 Bytes
Contents
require "set" module Spring module Client class Rails < Command COMMANDS = Set.new %w(console runner generate destroy test) ALIASES = { "c" => "console", "r" => "runner", "g" => "generate", "d" => "destroy", "t" => "test" } def self.description "Run a rails command. The following sub commands will use Spring: #{COMMANDS.to_a.join ', '}." end def call command_name = ALIASES[args[1]] || args[1] if COMMANDS.include?(command_name) Run.call(["rails_#{command_name}", *args.drop(2)]) elsif command_name.start_with?("db:") Run.call(["rake", *args.drop(1)]) else require "spring/configuration" ARGV.shift load Dir.glob(Spring.application_root_path.join("{bin,script}/rails")).first exit end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spring-3.1.1 | lib/spring/client/rails.rb |
spring-3.1.0 | lib/spring/client/rails.rb |