Skip to content

Commit 8bdc70d

Browse files
committed
Compatibility with Rails 5.2
1 parent 237916d commit 8bdc70d

File tree

7 files changed

+93
-31
lines changed

7 files changed

+93
-31
lines changed

.travis.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@ sudo: false
55
branches:
66
only: master
77
rvm:
8-
- 2.2.7
9-
- 2.3.4
10-
- 2.4.1
8+
- 2.2
9+
- 2.3
10+
- 2.4
1111
gemfile:
1212
- gemfiles/rails3.2.gemfile
1313
- gemfiles/rails4.2.gemfile
1414
- gemfiles/rails5.0.gemfile
1515
- gemfiles/rails5.1.gemfile
16+
- gemfiles/rails5.2.gemfile
1617
matrix:
18+
allow_failures:
19+
gemfile: gemfiles/rails5.2.gemfile
1720
exclude:
18-
- rvm: 2.4.1
21+
- rvm: 2.4
1922
gemfile: gemfiles/rails3.2.gemfile
20-
- rvm: 2.4.1
23+
- rvm: 2.4
2124
gemfile: gemfiles/rails4.2.gemfile

gemfiles/rails3.2.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration_tools (1.3.1)
4+
migration_tools (1.4.0)
55
activerecord (>= 3.2.6, < 5.2)
66

77
GEM
@@ -51,4 +51,4 @@ DEPENDENCIES
5151
wwtd
5252

5353
BUNDLED WITH
54-
1.14.6
54+
1.16.0

gemfiles/rails4.2.gemfile.lock

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
PATH
22
remote: ..
33
specs:
4-
migration_tools (1.3.1)
4+
migration_tools (1.4.0)
55
activerecord (>= 3.2.6, < 5.2)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
activemodel (4.2.5)
11-
activesupport (= 4.2.5)
10+
activemodel (4.2.10)
11+
activesupport (= 4.2.10)
1212
builder (~> 3.1)
13-
activerecord (4.2.5)
14-
activemodel (= 4.2.5)
15-
activesupport (= 4.2.5)
13+
activerecord (4.2.10)
14+
activemodel (= 4.2.10)
15+
activesupport (= 4.2.10)
1616
arel (~> 6.0)
17-
activesupport (4.2.5)
17+
activesupport (4.2.10)
1818
i18n (~> 0.7)
19-
json (~> 1.7, >= 1.7.7)
2019
minitest (~> 5.1)
2120
thread_safe (~> 0.3, >= 0.3.4)
2221
tzinfo (~> 1.1)
23-
arel (6.0.3)
24-
builder (3.2.2)
25-
bump (0.5.3)
26-
i18n (0.7.0)
22+
arel (6.0.4)
23+
builder (3.2.3)
24+
bump (0.5.4)
25+
concurrent-ruby (1.0.5)
26+
i18n (0.9.1)
27+
concurrent-ruby (~> 1.0)
2728
iconv (1.0.4)
28-
json (1.8.3)
2929
metaclass (0.0.4)
30-
minitest (5.8.3)
30+
minitest (5.10.3)
3131
minitest-rg (5.2.0)
3232
minitest (~> 5.0)
33-
mocha (1.1.0)
33+
mocha (1.3.0)
3434
metaclass (~> 0.0.1)
35-
rake (10.4.2)
36-
sqlite3 (1.3.11)
37-
thread_safe (0.3.5)
38-
tzinfo (1.2.2)
35+
rake (12.3.0)
36+
sqlite3 (1.3.13)
37+
thread_safe (0.3.6)
38+
tzinfo (1.2.4)
3939
thread_safe (~> 0.1)
4040
wwtd (1.3.0)
4141

@@ -55,4 +55,4 @@ DEPENDENCIES
5555
wwtd
5656

5757
BUNDLED WITH
58-
1.14.6
58+
1.16.0

gemfiles/rails5.0.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration_tools (1.3.1)
4+
migration_tools (1.4.0)
55
activerecord (>= 3.2.6, < 5.2)
66

77
GEM
@@ -50,4 +50,4 @@ DEPENDENCIES
5050
wwtd
5151

5252
BUNDLED WITH
53-
1.14.6
53+
1.16.0

gemfiles/rails5.1.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration_tools (1.3.1)
4+
migration_tools (1.4.0)
55
activerecord (>= 3.2.6, < 5.2)
66

77
GEM
@@ -50,4 +50,4 @@ DEPENDENCIES
5050
wwtd
5151

5252
BUNDLED WITH
53-
1.14.6
53+
1.16.0

gemfiles/rails5.2.gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source "https://rubygems.org"
2+
3+
gem "activerecord", "~> 5.2.0.beta2"
4+
5+
gemspec path: "../"

gemfiles/rails5.2.gemfile.lock

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
migration_tools (1.4.0)
5+
activerecord (>= 3.2.6, < 5.2)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
activemodel (5.2.0.beta2)
11+
activesupport (= 5.2.0.beta2)
12+
activerecord (5.2.0.beta2)
13+
activemodel (= 5.2.0.beta2)
14+
activesupport (= 5.2.0.beta2)
15+
arel (>= 9.0)
16+
activesupport (5.2.0.beta2)
17+
concurrent-ruby (~> 1.0, >= 1.0.2)
18+
i18n (~> 0.7)
19+
minitest (~> 5.1)
20+
tzinfo (~> 1.1)
21+
arel (9.0.0)
22+
bump (0.5.4)
23+
concurrent-ruby (1.0.5)
24+
i18n (0.9.1)
25+
concurrent-ruby (~> 1.0)
26+
metaclass (0.0.4)
27+
minitest (5.10.3)
28+
minitest-rg (5.2.0)
29+
minitest (~> 5.0)
30+
mocha (1.3.0)
31+
metaclass (~> 0.0.1)
32+
rake (12.3.0)
33+
sqlite3 (1.3.13)
34+
thread_safe (0.3.6)
35+
tzinfo (1.2.4)
36+
thread_safe (~> 0.1)
37+
wwtd (1.3.0)
38+
39+
PLATFORMS
40+
ruby
41+
42+
DEPENDENCIES
43+
activerecord (~> 5.2.0.beta2)
44+
bump
45+
migration_tools!
46+
minitest
47+
minitest-rg
48+
mocha
49+
rake
50+
sqlite3
51+
wwtd
52+
53+
BUNDLED WITH
54+
1.16.0

0 commit comments

Comments
 (0)