This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
rails
mirror of
https://github.com/rails/rails
Watch
8
Star
0
Fork
You've already forked rails
0
Code
Issues
Projects
Releases
Wiki
Activity
be99f0c7eb
rails
/
load_paths.rb
4 lines
89 B
Ruby
Raw
Normal View
History
Unescape
Escape
Remove rescue as it was clobbering the real error.
2011-04-16 00:13:17 +08:00
# bust gem prelude
This fixes an issue when bundling to a local path (eg. /vendor/bundle). If you bundle to a local path bundler is not included in it, so calling "gem 'bundler'" will fail.
2011-07-17 21:21:19 +08:00
require
'rubygems'
unless
defined?
Gem
Remove rescue as it was clobbering the real error.
2011-04-16 00:13:17 +08:00
require
'bundler'
This fixes an issue when bundling to a local path (eg. /vendor/bundle). If you bundle to a local path bundler is not included in it, so calling "gem 'bundler'" will fail.
2011-07-17 21:21:19 +08:00
Bundler
.
setup