1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
require "spring/watcher"
require "spring/command_wrapper"
module Spring
@commands = {}
class << self
attr_reader :commands
end
def self.register_command(name, command = nil)
commands[name] = CommandWrapper.new(name, command)
end
def self.command?(name)
commands.include? name
end
def self.command(name)
commands.fetch name
end
require "spring/commands/rails"
require "spring/commands/rake"
# Load custom commands, if any.
# needs to be at the end to allow modification of existing commands.
config = File.expand_path("~/.spring.rb")
require config if File.exist?(config)
# If the config/spring.rb contains requires for commands from other gems,
# then we need to be under bundler.
require "bundler/setup"
Gem::Specification.map(&:name).grep(/^spring-commands-/).each do |command|
require command
end
config = File.expand_path("./config/spring.rb")
require config if File.exist?(config)
end
|