From 140d5394de6651d6e6aef135bd9e6f8478f7705d Mon Sep 17 00:00:00 2001 From: Washington Luiz Date: Sun, 8 Jun 2014 21:59:16 -0300 Subject: [PATCH] Fix bundling rails from local path --- Gemfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 7bc873f..f99c1fd 100644 --- a/Gemfile +++ b/Gemfile @@ -10,9 +10,8 @@ gem 'polyamorous', '~> 1.0.0' case rails when /\// # A path gem 'activesupport', path: "#{rails}/activesupport" - gem 'activemodel', path: "#{rails}/activemodel" gem 'activerecord', path: "#{rails}/activerecord" - gem 'actionpack', path: "#{rails}/activerecord" + gem 'actionpack', path: "#{rails}/actionpack" when /^v/ # A tagged version git 'git://github.com/rails/rails.git', :tag => rails do gem 'activesupport'