0
votes
2answers
24 views

/usr/local/rvm/bin/rvm-shell: No such file or directory

I have the problem. I've installed rvm but when I try to cap deploy:setup I have: bash: /usr/local/rvm/bin/rvm-shell: No such file or directory command finished in 244ms failed: ...
0
votes
1answer
7 views

rvmrc specifies 1.9.3 but bundle install --deployment uses 1.9.1? why so?

My rails app (myapp) has a .rvmrc containing # cat .rvmrc rvm --create use ruby-1.9.3-p0@myapp When I deploy my app using capistrano in production (which works fine)... #cat deploy.rb require ...
0
votes
0answers
29 views

After successful deployment App not running (RoR/Capistrano/Github)

In between i found another working solution to solve the issue using Windows for development and Linux for production. Solution After using the recommendations i have another issue. CAP DEPLOY works ...
-1
votes
0answers
28 views

Capistrano is throwing a NoMethodError

I've been using Ruby's Capistrano deployment tool for a few years and never had much problems with it at all. Now, after upgrading Ruby to 2.0, I started getting all kinds of errors making it ...
0
votes
1answer
36 views

Commands in the “system” block works in console but NOT inside application

It has been 12 hours since I've been trying to solve this problem... Here it is: Inside my controller, I have a method like this: def restart_workers system("cd /var/www/sts/current ...
0
votes
2answers
44 views

Switching ruby version to run a command on server

I have a Ruby application (non-Rails) which I deploy with capistrano. I can ssh into my server, cd into the /current directory and start it with the command ruby tweet_tracker.rb start However, if ...
0
votes
0answers
66 views

Cap deploy failed when running “rvm rvmrc trust”

After first success deployment using Capistrano, running cap deploy failed: no old releases to clean up triggering after callbacks for deploy'<br/> * 2013-04-16 10:59:15 ...
0
votes
1answer
63 views

Capistrano VPS deploy error

I am using Capistrano to deploy to a VPS. In my deploy.rb: require "bundler/capistrano" server "xxx.xxx.xx.xxx", :web, :app, :db, primary: true set :application, "riffbox" set :user, "root" set ...
0
votes
1answer
32 views

Why is 'gem list' not showing the available gem that 'bundle install' show?

On my production server : When I do a bundle install I can see 'using schema_plus (1.0.1)' message When I do a 'gem list' I don't see it anymore. Why is there a difference between both ? That should ...
0
votes
1answer
41 views

How to uninstall a gem from a production deployment with capistrano

I am deploying a rails app to production so gems go in shared/bundle. The mysql2 gem seems to have an issue in Ubuntu12.04 so I'd like to remove it and reinstall but how would I do this? I can't just ...
0
votes
1answer
67 views

Undefined method “job_type” for main:Object with Whenever gem at scheduler.rb

I have been trying to implement the Whenever gem to help schedule my Sidekiq tasks. I checked the crontab and it was updated correctly, and bundle exec whenever works correctly in the terminal as ...
0
votes
1answer
123 views

capistrano error msg: Please install the pg adapter: `gem install activerecord-pg-adapter` (cannot load such file --

I am using capistrano and get this error message: Please install the pg adapter: `gem install activerecord-pg-adapter` (cannot load such file -- active_record/connection_adapters/pg_adapter) I have ...
0
votes
1answer
106 views

Capistrano deployment can't find certain gems during deployment (Probably RVM related)

I've been trying to deploy to a VPS using Capistrano, and the following command is throwing me a lot of errors: * executing "cd -- /home/work/for_linode/releases/20130317174830 && rake ...
0
votes
2answers
35 views

rvm install via capistrano is flooding output

I'm running a shell script via capistrano to install rvm and ruby. When running rvm install ruby-${RUBY_VERSION} 2>&1 > ../log/ruby_install.log in my script, all output seems to be going ...
0
votes
1answer
239 views

Redirect output from a shell script to a file

I'm busy writing up a Capistrano deployment script for one of our applications. One of the steps installs RVM using the following command: run "cat ~/rvm-installer.sh | bash -s stable --ruby" ...
0
votes
1answer
61 views

sh: bundle: error

I'm really frustrated - issue of capistrano not finding bundle has alot of questions & answers. but they don't seem to work for me... so sad :( situation is - i'm using host which has system wide ...
0
votes
0answers
38 views

Deploy Rails app with capistrano …cap deploy:cold error

Capistrano when i type "cap deploy:cold" on my ruby command prompt i get the following error My deploy.rb file require 'bundler/capistrano' require 'capistrano' require 'capistrano-vexxhost' ...
0
votes
1answer
338 views

rvm: command not found from cap deploy

Hope this question helps someone, but I'm interested in the answer anyway. I had this error when running cap deploy among the other output it gave: rvm: command not found I googled and tried ...
0
votes
2answers
114 views

How to tell Bundler to use gems installed systemwide (production deployment)?

When deploying a Rails app with Capistrano, I want Bundler to install gems to shared/bundles dir ONLY IF it can't find gems installed systemwide already. How do I do it? For example, if I have a pg ...
0
votes
1answer
29 views

Find which version of Capistrano is running

I'm on a shared application environment and there's several ruby versions and gemsets installed (managed via RVM). I need to validate both the Capistrano gem version and ruby version on my deploy ...
1
vote
1answer
349 views

Capistrano: cannot load such file — rvm/capistrano (LoadError)

This is really bugging me as there is a bit (not a lot) on the internet about the following error when running cap deploy:cold cannot load such file -- rvm/capistrano (LoadError) The solution seems ...
0
votes
2answers
251 views

Updated Ruby in production and now Rails won't start because still referencing old ruby

Just updated Ruby on a staging server via RVM: $ rvm upgrade 1.9.3-p327 1.9.3-p362 I said 'yes' to all the migration and alias questions including deleting old Ruby. Now getting error from ...
1
vote
1answer
115 views

How do I configure Capistrano to use a different gemset for staging and production environments?

I have two files on the server, one in each environment's shared directory, named rvmrc. This contains rvm use ree-1.8.7-2012.02@appname-production --create for production and rvm use ...
3
votes
2answers
90 views

Is it a good idea to use a different gemset for staging and production environments?

I have the idea to configure my app to use a different gemset for staging and production. My thought process is that by splitting the environments into separate gemsets, I'd have more freedom down the ...
1
vote
1answer
688 views

Bundler::GemfileError on Rails app on Passenger after switching to Capistrano

I have a rails app that runs on Phusion Passenger with Apache in production. Everything worked when I used to manually deploy (by SSH-ing in to the server and fetching the latest updates, etc.), but I ...
0
votes
1answer
107 views

undefined method `action_mailer' during Capistrano deployment

I'm having this error message come up during Capistrano deployment. It implies to me that something's wrong with Rails being installed or something? Rails is not currently installed on the server ...
0
votes
2answers
336 views

bundler/capistrano is not installing gems with correct ruby version

I'm trying to deploy my first app on a server with Capistrano, and I'm a bit lost with managing gemsets and ruby version. These are my (server and workstation) versions : Rails 3.2.8 RVM 1.16.17 ...
0
votes
3answers
181 views

Deploy error in Webistrano with bunder, capistrano and require 'bundler/capistrano' recipe

Recently I've been trying to upgrade Webistrano from a version that did not use bundler to manage the application gems to one that does. In order to deploy rails applications, we would use require ...
0
votes
2answers
155 views

How to create an RVM environment on a server through net-ssh?

I have a script which is installing Ruby/RVM (and more) on my server to get an environment ready to deploy a Rails project. This script is in ruby and use the net-ssh lib to do the job. After having ...
2
votes
1answer
1k views

`gem_original_require': no such file to load — rvm/capistrano (LoadError)

I'm on Ubuntu 12.04, Ruby 1.9.3, Rails 3.2.8 using RVM. Yesterday i used Capistrano just fine, i restarted my ubuntu and now i'm when i'm trying to deploy with capistrano i get this: $ cap deploy ...
1
vote
2answers
826 views

Define Bundle Path With Capistrano

I am using the following configurations in my deploy.rb file for capistrano: require 'bundler/capistrano' require 'rvm/capistrano' set :bundle_cmd, ...
0
votes
1answer
183 views

Carrierwave to different upload folder | Routes not correct

I need to configure my carrierwave gem in rails to use a different upload folder beyond the whole rails scope. I have a VPS and using RVM, ruby, rails. I'm deploying with capistrano, but every time ...
0
votes
1answer
486 views

Bundle install error when deploying via capistrano (& rvm)

Now I must admit that I'm stumbling around in the dark a little bit as far as this deployment lark is concerned. I'll try and explain the situation best I can; I have set up a test deployment server ...
2
votes
1answer
352 views

setting up an EC2 server with rvm via scripting

I'm looking for a way to install rvm, install a specific ruby version (using rvm) and set this installed ruby version as default. Before I can install rvm I have to install gcc and some other very ...
0
votes
1answer
128 views

Permissions issues with bundler install

I am working on a cap/deploy script for my rails application. On my server, I am using RVM to manage my ruby install. The issue that I am seeing is even though I have set the runner/user/group to ...
1
vote
1answer
64 views

Stuck in rvm, capistrano, :system, :user revolving door

What is the best practice for installing ruby, gemset for on a server. I currently have one app and an account with the same name. I will be depoloying other apps in the future on the same VPS. I ...
1
vote
1answer
341 views

Capistrano deployment failing

Im having some problems getting capistrano to deploy. As far as i can tell the fail happens with the git ls-remote command, but when i run it on the server manually it returns successfully. Any help ...
0
votes
0answers
118 views

RVM, Capistrano, Bundler woes

I can not run the task: cap bundler:install_gems Victors-MacBook-Air:clipper victorstan$ cap bundler:install_gems * executing `bundler:install_gems' * executing "ls -x /srv/www/clipper/releases" ...
0
votes
1answer
82 views

Capistrano no longer working after removing rbenv

I removed RBENV and switched to RVM. Now when i try to deploy with capistrano, or even try to just run "cap" i get: /Users/me/.rbenv/shims/cap: No such file or directory It's obviously still ...
0
votes
0answers
84 views

How do I set the Rails runner gemset to use RVM's Gemset?

I have RVM installed on a VPS with rails 1.9.3. I can deploy my code with capistrano fine and my gemfile has: gem 'rmagick' but for some reason when I run rails runner -e production ...
0
votes
2answers
117 views

Capistrano and rvm the right way

I have this situation on my client workstation. When i try to make a deploy, with cap deploy i get this error message: capistrano is not part of the bundle. Add it to Gemfile. (Gem::LoadError) ...
2
votes
1answer
261 views

Capistrano deploy fails with rake run (rails3 + rvm)

EDIT: The issue here was that I used RVM on my local machine and rbenv on the server. This is highly not recommended, if you're managing several ruby installation (or upgrading your ruby version but ...
0
votes
1answer
105 views

Capistrano fails when trying to connect to remote db saying: rvm-shell no such file or directory

I have a capistrano recipe that is using a remote database in a Rails 3 application. Here is part of the recipe: role :web, "ip1" role :app, "ip1" role :db, "ip2" set :rvm_type, :system set ...
1
vote
1answer
345 views

Capistrano & jruby & rvm - Bundler::GemNotFound: Could not find rake-0.9.2.2 in any of the sources

I encountered Bundler::GemNotFound: Could not find rake-0.9.2.2 in any of the sources during deploying my application using capistrano, and when processing deploy:assets:precompile. The command is: ...
0
votes
1answer
436 views

Unicorn restarting in old release directory

I have a capistrano deployment that seems to be working fine, however after the USR2 signal is sent to the unicorn process it restarts in the old release folder. It is somewhat similar to the problem ...
4
votes
3answers
617 views

Deploying with capistrano does ignore group setting

In my deploy-file I set the group to www-data: set :user, "root" set :group, "www-data" so when using cap:setup I expected capistrano to chown the folders with root:www-data ...
0
votes
1answer
235 views

Capistrano deployment issues

I've been wrestling with Capistrano, trying to deploy a test rails app for a couple of days, and I think I'm almost there, but I'm getting this error when I run cap deploy: failed: ...
0
votes
0answers
139 views

Error when running `cap deploy:cold` “no such file to load — bundler/setup”

Getting this error when running cap deploy:cold [myserver.com] executing command ** [out :: myserver.com] (in /var/www/myapp/releases/20120603041918) ** [out :: myserver.com] rake aborted! ...
0
votes
1answer
739 views

Capistrano/RVM rake not found

I'm trying to deploy the first rails application using Capistrano. I'm getting an error while capistrano tries to run rake db:migrate. To be more clear this is the traceback of the exception: [ip] ...
2
votes
1answer
5k views

Rails 3.2.2 RVM System Wide Capistrano Install Can't Find Gems

I really desperately need help with this issue and am more than a little lost. I am trying to deploy a new production server using Capistrano Ext to allow for a staging and production server but it ...

1 2