diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-11-19 14:16:45 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-11-19 14:25:37 +0100 |
commit | 3053fee954c1e28b23f7e00921d7b9b3b3867fa5 (patch) | |
tree | 977ba57ecf6e37941b81bea378fe1cab9bed69d6 | |
parent | 2b18e22e9b6487fc4d706258253a768767ef1392 (diff) | |
download | rails-3053fee954c1e28b23f7e00921d7b9b3b3867fa5.tar.gz rails-3053fee954c1e28b23f7e00921d7b9b3b3867fa5.tar.bz2 rails-3053fee954c1e28b23f7e00921d7b9b3b3867fa5.zip |
use `4-0-stable` arel branch to get bundle working again.
this resolves the following error when running `bundle install`
```
ArgumentError: wrong number of arguments (2 for 1)
/Users/senny/Projects/rails/.bundle/bundler/gems/arel-454a25f18c95/lib/arel/crud.rb:5:in `compile_update'
```
The build is still broken with lots of:
```
ArgumentError: wrong number of arguments (2 for 1)
/Users/senny/Projects/rails/.bundle/bundler/gems/arel-454a25f18c95/lib/arel/crud.rb:5:in `compile_update'
```
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ gem 'bcrypt-ruby', '~> 3.1.2' gem 'jquery-rails', '~> 2.2.0' gem 'turbolinks' gem 'coffee-rails', '~> 4.0.0' -gem 'arel', github: 'rails/arel', branch: 'master' +gem 'arel', github: 'rails/arel', branch: '4-0-stable' # This needs to be with require false to avoid # it being automatically loaded by sprockets |