Sha256: 8111e5a56d10f6c425c79e477b283f322b4370d5913d03d53874f5ecf944330d
Contents?: true
Size: 1.15 KB
Versions: 4
Compression:
Stored size: 1.15 KB
Contents
require 'capistrano/multiconfig/dsl' include Capistrano::DSL include Capistrano::Multiconfig::DSL namespace :load do task :defaults do load 'capistrano/defaults.rb' end end stages.each do |stage| Rake::Task.define_task(stage) do # Set stage variable set(:stage, stage) # Load defaults variables invoke 'load:defaults' # Load stage configuration(s). # # For stage 'production' will be loaded next configurations: # # * config/deploy.rb # * config/deploy/production.rb # # For stage 'soa:blog:production' will be loaded next configurations: # # * config/deploy.rb # * config/deploy/soa.rb # * config/deploy/soa/blog.rb # * config/deploy/soa/blog/production.rb stage.split(':').inject([stages_root]) do |paths, segment| paths << File.join(paths.last, segment) end.each do |path| file = "#{path}.rb" load(file) if File.exists?(file) end # Load SCM tasks load "capistrano/#{fetch(:scm)}.rb" # Set locale I18n.locale = fetch(:locale, :en) # configure core backend configure_backend end.add_description("Load #{stage} configuration") end
Version data entries
4 entries across 4 versions & 1 rubygems