Module: Capistrano::Deploy::Strategy
- Defined in:
- lib/capistrano/recipes/deploy/strategy.rb,
lib/capistrano/recipes/deploy/strategy/base.rb,
lib/capistrano/recipes/deploy/strategy/copy.rb,
lib/capistrano/recipes/deploy/strategy/export.rb,
lib/capistrano/recipes/deploy/strategy/remote.rb,
lib/capistrano/recipes/deploy/strategy/checkout.rb,
lib/capistrano/recipes/deploy/strategy/remote_cache.rb,
lib/capistrano/recipes/deploy/strategy/unshared_remote_cache.rb
Defined Under Namespace
Classes: Base, Checkout, Copy, Export, Remote, RemoteCache, UnsharedRemoteCache
Class Method Summary collapse
Class Method Details
.new(strategy, config = {}) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/capistrano/recipes/deploy/strategy.rb', line 4 def self.new(strategy, config={}) strategy_file = "capistrano/recipes/deploy/strategy/#{strategy}" require(strategy_file) strategy_const = strategy.to_s.capitalize.gsub(/_(.)/) { $1.upcase } if const_defined?(strategy_const) const_get(strategy_const).new(config) else raise Capistrano::Error, "could not find `#{name}::#{strategy_const}' in `#{strategy_file}'" end rescue LoadError raise Capistrano::Error, "could not find any strategy named `#{strategy}'" end |