Skip to content

Commit 3b44d2e

Browse files
committed
Test on Ruby 2.0.0 on Travis.
1 parent 6c18e64 commit 3b44d2e

6 files changed

+12
-5
lines changed

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ rvm:
44
- 1.8.7
55
- 1.9.2
66
- 1.9.3
7+
- 2.0.0
78

89
gemfile:
910
- gemfiles/activerecord_2_2.gemfile
@@ -24,12 +25,18 @@ matrix:
2425
- rvm: 1.9.3
2526
gemfile: gemfiles/activerecord_2_2.gemfile
2627
env: DB=mysql
28+
- rvm: 2.0.0
29+
gemfile: gemfiles/activerecord_2_2.gemfile
30+
env: DB=mysql
2731
- rvm: 1.9.2
2832
gemfile: gemfiles/activerecord_2_2.gemfile
2933
env: DB=postgres
3034
- rvm: 1.9.3
3135
gemfile: gemfiles/activerecord_2_2.gemfile
3236
env: DB=postgres
37+
- rvm: 2.0.0
38+
gemfile: gemfiles/activerecord_2_2.gemfile
39+
env: DB=postgres
3340

3441
before_script:
3542
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database if not exists oauth2_test;'; fi"

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
source :rubygems
1+
source 'https://rubygems.org'
22
gemspec
33

gemfiles/activerecord_2_3.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file was generated by Appraisal
22

3-
source :rubygems
3+
source "https://rubygems.org"
44

55
gem "activerecord", "~> 2.3.0"
66

gemfiles/activerecord_3_0.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file was generated by Appraisal
22

3-
source :rubygems
3+
source "https://rubygems.org"
44

55
gem "activerecord", "~> 3.0.0"
66

gemfiles/activerecord_3_1.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file was generated by Appraisal
22

3-
source :rubygems
3+
source "https://rubygems.org"
44

55
gem "activerecord", "~> 3.1.0"
66

gemfiles/activerecord_3_2.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file was generated by Appraisal
22

3-
source :rubygems
3+
source "https://rubygems.org"
44

55
gem "activerecord", "~> 3.2.0"
66

0 commit comments

Comments
 (0)