search for: rvm_ruby_str

Displaying 5 results from an estimated 5 matches for "rvm_ruby_str".

2013 May 14
1
rvm/capistrano
When I ran cap deploy:setup, the following actually installed rvm, ruby and the online_store gemset on my staging server: set :rvm_ruby_string, ''ruby-1.9.3-p0@online_store'' set :rvm_autolibs_flag, "read-only" set :rvm_type, :system set :rvm_install_with_sudo, true before ''deploy:setup'', ''rvm:install_rvm'' # install RVM before ''deploy:setup'', ''...
2011 Apr 18
2
rubygems fail - require hpricot!
...9.2-p180'' export GEM_HOME GEM_PATH=''/Users/Anush/.rvm/gems/ruby-1.9.2-p180'' export GEM_PATH MY_RUBY_HOME=''/Users/Anush/.rvm/rubies/ruby-1.9.2-p180'' export MY_RUBY_HOME IRBRC=''/Users/Anush/.rvm/rubies/ruby-1.9.2-p180/.irbrc'' export IRBRC rvm_ruby_string=''ruby-1.9.2-p180'' export rvm_ruby_string unset rvm_gemset_name unset MAGLEV_HOME lenovo-t400:environments Anush$ find `gem env gemdir`/gems/hpricot-* -name \*.bundle -ls 16323203 24 -rwxr-xr-x 1 Anush staff 10152 Apr 16 21:24 /Users/Anush/.rvm/gems/ruby-1.9...
2013 Mar 03
1
Deploy with Capistrano. Bundle install freezes indefinetly.
I am fighting with this for 5 days... i''m getting crazy! Here is my deploy.rb: require "bundler/capistrano" require "rvm/capistrano" # Load RVM''s capistrano plugin. set :rvm_ruby_string, :local # Or whatever env you want it to run in. ''1.9.3'' set :domain, ''www.xxx.com'' set :application, "myapp" set :repository, "git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:myrepo/myapp.git" set :branch, "bkpantesbootstr...
2014 May 02
0
staging server unexpectedly started installing gems during staging deploy
...) It started installing gems. What I don't understand is why it did this during second deploy and not first? My staging and production gems should be identical. My deploy.rb file has this: namespace :deploy do desc "Create the gemset" task :create_gemset do run "rvm #{rvm_ruby_string} --create" end desc "Install the bundle" task :bundle do run "bundle install --gemfile #{release_path}/Gemfile --without development test" end end Now the bundle install there should only be installing new gems that are added. But I didn't add any new...
2013 Mar 14
1
Ubuntu 12.10 Nginx Rails 3.2.13. Deploy in sub URI. Nothing happens!
...location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } Here is my deploy.rb: require "bundler/capistrano" require "rvm/capistrano" set :rvm_ruby_string, :local set :domain, ''www.myapp1.domain.com'' set :application, "myapp1" set :repository, "git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:xxxxxxxx/myapp1.git" set :branch, "master" set :scm, "git" set :user, "myapp1&q...