Sha256: e3d89656a76d924a9448d68cbcd28c5965af33144d5621ff81b92ef775bc9890
Contents?: true
Size: 1.47 KB
Versions: 2
Compression:
Stored size: 1.47 KB
Contents
require "pixelforce_recipes/version" require "capistrano" if defined?(Capistrano::VERSION) if Capistrano::VERSION.to_s.split('.').first.to_i >= 3 require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/capistrano_3_recipes/base") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/capistrano_3_recipes/sidekiq") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/capistrano_3_recipes/resque") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/capistrano_3_recipes/resque_scheduler") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/capistrano_3_recipes/supervisor") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/capistrano_3_recipes/unicorn") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/capistrano_3_recipes/puma") else require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/legacy_recipes/base") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/legacy_recipes/unicorn") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/legacy_recipes/sidekiq") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/legacy_recipes/resque") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/legacy_recipes/puma") require File.expand_path("#{File.dirname(__FILE__)}/pixelforce_recipes/legacy_recipes/logrotate") end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pixelforce_recipes-2.0 | lib/pixelforce_recipes.rb |
pixelforce_recipes-1.8 | lib/pixelforce_recipes.rb |