Is it possible to use Rails 3 without a picker?

We deploy our applications as linux RPM packages (with all the dependencies also packaged in RPM). It turns out that stratification is problematic in this situation, and this only complicates our assembly process - we would like to get rid of it.

Is it possible to run a Rails 3 application without forcing Ruby to use system rubigems? How?

+4
source share
2 answers

There is a manual in the Rails 3 Way book that describes that the easiest way to remove the Bundler is to delete the Gemfile * files. It. It just works.

+2
source

You can install all gems manually using gem install gemname . In your situation or if you do not have sudo privileges, it may be recommended to install gem files locally in your user directory using

 gem install --user-install gemname 

You can also install your gems locally using the bundler:

 bundle install --path ~/.gem 
0
source

All Articles