module MagicRecipes::Gems

Gems - Deploy-Recipes

Useless .. take the capistrano task

Public Class Methods

load_into(configuration) click to toggle source
# File lib/magic_recipes/gems.rb, line 8
def self.load_into(configuration)
  configuration.load do
    
    namespace :gems do
      task :install do
        run "cd #{deploy_to}/current && RAILS_ENV=production bundle install --no-deployment"
      end
    end

    # after :deploy, "gems:install"
    
  end
end