Skip to content

Commit de3a7b1

Browse files
committed
Workaround bundle problem on < v1.3
1 parent 3e3ae0d commit de3a7b1

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Gemfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,15 @@ if branch == 'master' || branch >= "v2.0"
1010
gem "rails-controller-testing", group: :test
1111
end
1212

13+
if ['v1.1', 'v1.2'].include? branch
14+
gem 'rails', '4.2.4'
15+
gem 'mysql2', '~> 0.3.18'
16+
else
17+
gem 'mysql2'
18+
end
19+
1320
gem 'pg'
1421
gem 'sqlite3'
15-
gem 'mysql2'
1622

1723
group :development, :test do
1824
gem "pry-rails"

0 commit comments

Comments
 (0)