Skip to content
This repository was archived by the owner on Mar 30, 2022. It is now read-only.

Commit 05c9071

Browse files
committed
Lock Rails version to 4.2 instead of master.
1 parent e7f0168 commit 05c9071

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ env:
1515
global:
1616
- SQ_CONFIG_FILE=$TRAVIS_BUILD_DIR/spec/config.travis.yml
1717
matrix:
18-
- RAILS=master AREL=master ADAPTER=sqlite3
18+
- RAILS=4-2-stable AREL=6-0-stable ADAPTER=sqlite3
1919
- RAILS=4-1-stable AREL=5-0-stable ADAPTER=sqlite3
2020
- RAILS=4-0-stable AREL=4-0-stable ADAPTER=sqlite3
2121
- RAILS=3-2-stable AREL=3-0-stable ADAPTER=sqlite3
2222
- RAILS=3-1-stable AREL=2-2-stable ADAPTER=sqlite3
2323
- RAILS=3-0-stable AREL=2-0-stable ADAPTER=sqlite3
24-
- RAILS=master AREL=master ADAPTER=mysql
24+
- RAILS=4-2-stable AREL=6-0-stable ADAPTER=mysql
2525
- RAILS=4-1-stable AREL=5-0-stable ADAPTER=mysql
2626
- RAILS=4-0-stable AREL=4-0-stable ADAPTER=mysql
2727
- RAILS=3-2-stable AREL=3-0-stable ADAPTER=mysql
2828
- RAILS=3-1-stable AREL=2-2-stable ADAPTER=mysql
2929
- RAILS=3-0-stable AREL=2-0-stable ADAPTER=mysql
30-
- RAILS=master AREL=master ADAPTER=mysql2
30+
- RAILS=4-2-stable AREL=6-0-stable ADAPTER=mysql2
3131
- RAILS=4-1-stable AREL=5-0-stable ADAPTER=mysql2
3232
- RAILS=4-0-stable AREL=4-0-stable ADAPTER=mysql2
3333
- RAILS=3-2-stable AREL=3-0-stable ADAPTER=mysql2
3434
- RAILS=3-1-stable AREL=2-2-stable ADAPTER=mysql2
35-
- RAILS=master AREL=master ADAPTER=postgresql
35+
- RAILS=4-2-stable AREL=6-0-stable ADAPTER=postgresql
3636
- RAILS=4-1-stable AREL=5-0-stable ADAPTER=postgresql
3737
- RAILS=4-0-stable AREL=4-0-stable ADAPTER=postgresql
3838
- RAILS=3-2-stable AREL=3-0-stable ADAPTER=postgresql

Gemfile

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@ gemspec
33

44
gem 'rake'
55

6-
rails = ENV['RAILS'] || 'master'
7-
arel = ENV['AREL'] || 'master'
8-
9-
if rails == 'master'
10-
gem 'i18n', github: 'svenfuchs/i18n', branch: 'master'
11-
end
6+
rails = ENV['RAILS'] || '4-2-stable'
7+
arel = ENV['AREL'] || '6-0-stable'
128

139
arel_opts = case arel
1410
when /\// # A path

0 commit comments

Comments
 (0)