* ←[32m2013-05-20 12:55:23 executing `deploy:finalize_update'←[0m
triggering before callbacks for `deploy:finalize_update'
* ←[32m2013-05-20 12:55:23 executing `deploy:assets:symlink'←[0m
* ←[33mexecuting "rm -rf /home/dean/rails_projects/molex_app/releases/20130520
175523/public/assets && mkdir -p /home/dean/rails_projects/molex_app/releases/20
130520175523/public && mkdir -p /home/dean/rails_projects/molex_app/shared/asset
s && ln -s /home/dean/rails_projects/molex_app/shared/assets /home/dean/rails_pr
ojects/molex_app/releases/20130520175523/public/assets"←[0m
servers: ["10.24.5.50"]
[10.24.5.50] executing command
←[2;37mcommand finished in 41ms←[0m
* ←[32m2013-05-20 12:55:23 executing `bundle:install'←[0m
* ←[33mexecuting "cd /home/dean/rails_projects/molex_app/releases/201305201755
23 && bundle install --gemfile /home/dean/rails_projects/molex_app/releases/2013
0520175523/Gemfile --path /home/dean/rails_projects/molex_app/shared/bundle --de
ployment --quiet --without development test"←[0m
servers: ["10.24.5.50"]
[10.24.5.50] executing command
** [out :: 10.24.5.50] Cannot write a changed lockfile while frozen.
←[2;37mcommand finished in 19696ms←[0m
source "http://rubygems.org"
gem "rails", "3.2.13"
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'mysql2', "0.3.11"
gem 'rake', "10.0.3"
gem 'bundler'
gem 'will_paginate', "3.0.4"
gem 'mini_magick', "3.2"
gem 'paperclip', "2.7.0"
gem "workflow", "0.8.0"
gem "thinking-sphinx", "2.0.10"
gem "riddle", "1.5.0"
gem "rufus-scheduler", "2.0.8"
gem "googlecharts", "1.6.0"
gem 'jquery-rails', '1.0.19'
gem 'rubyzip', '0.9.9'
gem 'capistrano'
group :test, :development do
gem 'rspec', "2.13.0"
gem 'rspec-rails', "2.13.1"
gem 'factory_girl_rails', "1.4.0"
gem 'term-ansicolor'
gem 'turn'
end
group :test do
# bundler requires these gems while running tests
gem 'factory_girl', "2.3.0"
gem 'shoulda', "2.11.3"
gem 'treetop', '>=1.2.4'
gem 'polyglot', '>=0.2.4'
gem "rcov", '0.9.11'
gem 'webrat', "0.7.3"
gem 'database_cleaner', "0.5.0"
gem "selenium-client", "1.2.18"
gem "win32console", :platforms => [:mingw]
gem 'autotest-standalone', :require => 'autotest'
gem 'autotest-rails-pure'
end
group :assets do
gem 'sass-rails', "3.2.3"
gem 'coffee-rails', "3.2.1"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platform => :ruby
gem 'uglifier', "1.0.3"
end
require 'thinking_sphinx/deploy/capistrano'
require 'bundler/capistrano'
default_run_options[:pty] = true
set :application, "molex_app"
set :repository, [redacted]
set :scm, "git"
set :scm_username, [redacted]
set :scm_passphrase, [redacted]
set :scm_command, "git"
set :rails_env, "production"
set :use_sudo, false
set :branch, "master"
set :deploy_to, "/home/dean/rails_projects/#{application}"
set :deploy_via, :remote_cache
set :user, "dean"
set :password, [redacted]
role :web, [redacted] # Your HTTP server, Apache/etc
role :app, [redacted] # This may be the same as your `Web` server
role :db, [redacted], :primary => true # This is where Rails migrations will run
role :db, [redacted]
# from Stack Overflow, specific for Rails 3.1 and the asset pipeline:
set :normalize_asset_timestamps, false
# If you are using Passenger mod_rails uncomment this:
namespace :deploy do
task :before_update_code, :roles => [:app] do
thinking_sphinx.stop
end
task :after_update_code, :roles => [:app] do
symlink_sphinx_indexes
thinking_sphinx.configure
thinking_sphinx.start
end
task :symlink_sphinx_indexes, :roles => [:app] do
run "ln -nfs #{shared_path}/db/sphinx/production #{release_path}/db/sphinx/production"
end
task :start do ; end
task :stop do ; end
task :restart, :roles => :app, :except => { :no_release => true } do
run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
end
end
after "deploy:setup", "thinking_sphinx:shared_sphinx_folder"
--
You received this message because you are subscribed to the Google Groups "ruby-bundler" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ruby-bundler...@googlegroups.com.
To post to this group, send email to ruby-b...@googlegroups.com.
Visit this group at http://groups.google.com/group/ruby-bundler?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
To unsubscribe from this group and stop receiving emails from it, send an email to ruby-bundler...@googlegroups.com.
To post to this group, send email to ruby-b...@googlegroups.com.
Visit this group at http://groups.google.com/group/ruby-bundler?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to a topic in the Google Groups "ruby-bundler" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ruby-bundler/Hu-2W39CU_g/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to ruby-bundler...@googlegroups.com.
You received this message because you are subscribed to the Google Groups "ruby-bundler" group.