Skip to content

Commit 6b03f39

Browse files
committed
Add travis config
1 parent b2c9e4e commit 6b03f39

11 files changed

+211
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ tmtags
1515

1616
## IntelliJ/Rubymine
1717
.idea
18+
*.iml
1819

1920
## PROJECT::GENERAL
2021
coverage

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: ruby
2+
rvm:
3+
- 2.6.5
4+
gemfile:
5+
- gemfiles/activerecord_4.gemfile
6+
- gemfiles/activerecord_5.gemfile
7+
- gemfiles/activerecord_6.gemfile
8+
services:
9+
- postgresql
10+
before_script:
11+
- psql -c 'create database postgresql_cursor_test;' -U postgres
12+
- psql -c 'create table products ( id serial primary key, data varchar);' -U postgres -d postgresql_cursor_test
13+
addons:
14+
postgresql: '9.6'

Appraisals

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
appraise "activerecord-4" do
2+
gem "activerecord", "4.2.11.1"
3+
gem "pg", "~> 0.15"
4+
end
5+
6+
appraise "activerecord-5" do
7+
gem "activerecord", "5.2.3"
8+
end
9+
10+
appraise "activerecord-6" do
11+
gem "activerecord", "6.0.0"
12+
end

Gemfile.lock

+6
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@ GEM
1818
minitest (~> 5.1)
1919
tzinfo (~> 1.1)
2020
zeitwerk (~> 2.1, >= 2.1.8)
21+
appraisal (2.2.0)
22+
bundler
23+
rake
24+
thor (>= 0.14.0)
2125
concurrent-ruby (1.1.5)
2226
i18n (1.6.0)
2327
concurrent-ruby (~> 1.0)
2428
irb (1.0.0)
2529
minitest (5.12.0)
2630
pg (1.1.4)
2731
rake (13.0.0)
32+
thor (0.20.3)
2833
thread_safe (0.3.6)
2934
tzinfo (1.2.5)
3035
thread_safe (~> 0.1)
@@ -34,6 +39,7 @@ PLATFORMS
3439
ruby
3540

3641
DEPENDENCIES
42+
appraisal
3743
irb
3844
minitest
3945
pg

gemfiles/activerecord_4.gemfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "activerecord", "4.2.11.1"
6+
gem "pg", "~> 0.15"
7+
8+
gemspec path: "../"

gemfiles/activerecord_4.gemfile.lock

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
postgresql_cursor (0.6.4)
5+
activerecord (>= 3.1.0)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
activemodel (4.2.11.1)
11+
activesupport (= 4.2.11.1)
12+
builder (~> 3.1)
13+
activerecord (4.2.11.1)
14+
activemodel (= 4.2.11.1)
15+
activesupport (= 4.2.11.1)
16+
arel (~> 6.0)
17+
activesupport (4.2.11.1)
18+
i18n (~> 0.7)
19+
minitest (~> 5.1)
20+
thread_safe (~> 0.3, >= 0.3.4)
21+
tzinfo (~> 1.1)
22+
appraisal (2.2.0)
23+
bundler
24+
rake
25+
thor (>= 0.14.0)
26+
arel (6.0.4)
27+
builder (3.2.3)
28+
concurrent-ruby (1.1.5)
29+
i18n (0.9.5)
30+
concurrent-ruby (~> 1.0)
31+
irb (1.0.0)
32+
minitest (5.12.2)
33+
pg (0.21.0)
34+
rake (13.0.0)
35+
thor (0.20.3)
36+
thread_safe (0.3.6)
37+
tzinfo (1.2.5)
38+
thread_safe (~> 0.1)
39+
40+
PLATFORMS
41+
ruby
42+
43+
DEPENDENCIES
44+
activerecord (= 4.2.11.1)
45+
appraisal
46+
irb
47+
minitest
48+
pg (~> 0.15)
49+
postgresql_cursor!
50+
rake
51+
52+
BUNDLED WITH
53+
1.17.3

gemfiles/activerecord_5.gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "activerecord", "5.2.3"
6+
7+
gemspec path: "../"

gemfiles/activerecord_5.gemfile.lock

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
postgresql_cursor (0.6.4)
5+
activerecord (>= 3.1.0)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
activemodel (5.2.3)
11+
activesupport (= 5.2.3)
12+
activerecord (5.2.3)
13+
activemodel (= 5.2.3)
14+
activesupport (= 5.2.3)
15+
arel (>= 9.0)
16+
activesupport (5.2.3)
17+
concurrent-ruby (~> 1.0, >= 1.0.2)
18+
i18n (>= 0.7, < 2)
19+
minitest (~> 5.1)
20+
tzinfo (~> 1.1)
21+
appraisal (2.2.0)
22+
bundler
23+
rake
24+
thor (>= 0.14.0)
25+
arel (9.0.0)
26+
concurrent-ruby (1.1.5)
27+
i18n (1.6.0)
28+
concurrent-ruby (~> 1.0)
29+
irb (1.0.0)
30+
minitest (5.12.2)
31+
pg (1.1.4)
32+
rake (13.0.0)
33+
thor (0.20.3)
34+
thread_safe (0.3.6)
35+
tzinfo (1.2.5)
36+
thread_safe (~> 0.1)
37+
38+
PLATFORMS
39+
ruby
40+
41+
DEPENDENCIES
42+
activerecord (= 5.2.3)
43+
appraisal
44+
irb
45+
minitest
46+
pg
47+
postgresql_cursor!
48+
rake
49+
50+
BUNDLED WITH
51+
1.17.3

gemfiles/activerecord_6.gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "activerecord", "6.0.0"
6+
7+
gemspec path: "../"

gemfiles/activerecord_6.gemfile.lock

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
postgresql_cursor (0.6.4)
5+
activerecord (>= 3.1.0)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
activemodel (6.0.0)
11+
activesupport (= 6.0.0)
12+
activerecord (6.0.0)
13+
activemodel (= 6.0.0)
14+
activesupport (= 6.0.0)
15+
activesupport (6.0.0)
16+
concurrent-ruby (~> 1.0, >= 1.0.2)
17+
i18n (>= 0.7, < 2)
18+
minitest (~> 5.1)
19+
tzinfo (~> 1.1)
20+
zeitwerk (~> 2.1, >= 2.1.8)
21+
appraisal (2.2.0)
22+
bundler
23+
rake
24+
thor (>= 0.14.0)
25+
concurrent-ruby (1.1.5)
26+
i18n (1.6.0)
27+
concurrent-ruby (~> 1.0)
28+
irb (1.0.0)
29+
minitest (5.12.2)
30+
pg (1.1.4)
31+
rake (13.0.0)
32+
thor (0.20.3)
33+
thread_safe (0.3.6)
34+
tzinfo (1.2.5)
35+
thread_safe (~> 0.1)
36+
zeitwerk (2.1.10)
37+
38+
PLATFORMS
39+
ruby
40+
41+
DEPENDENCIES
42+
activerecord (= 6.0.0)
43+
appraisal
44+
irb
45+
minitest
46+
pg
47+
postgresql_cursor!
48+
rake
49+
50+
BUNDLED WITH
51+
1.17.3

postgresql_cursor.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ Gem::Specification.new do |spec|
4141
spec.add_development_dependency 'minitest'
4242
spec.add_development_dependency 'pg'
4343
spec.add_development_dependency 'rake'
44+
spec.add_development_dependency "appraisal"
4445
end

0 commit comments

Comments
 (0)