File tree 11 files changed +211
-0
lines changed
11 files changed +211
-0
lines changed Original file line number Diff line number Diff line change 15
15
16
16
# # IntelliJ/Rubymine
17
17
.idea
18
+ * .iml
18
19
19
20
# # PROJECT::GENERAL
20
21
coverage
Original file line number Diff line number Diff line change
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'
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 18
18
minitest (~> 5.1 )
19
19
tzinfo (~> 1.1 )
20
20
zeitwerk (~> 2.1 , >= 2.1.8 )
21
+ appraisal (2.2.0 )
22
+ bundler
23
+ rake
24
+ thor (>= 0.14.0 )
21
25
concurrent-ruby (1.1.5 )
22
26
i18n (1.6.0 )
23
27
concurrent-ruby (~> 1.0 )
24
28
irb (1.0.0 )
25
29
minitest (5.12.0 )
26
30
pg (1.1.4 )
27
31
rake (13.0.0 )
32
+ thor (0.20.3 )
28
33
thread_safe (0.3.6 )
29
34
tzinfo (1.2.5 )
30
35
thread_safe (~> 0.1 )
@@ -34,6 +39,7 @@ PLATFORMS
34
39
ruby
35
40
36
41
DEPENDENCIES
42
+ appraisal
37
43
irb
38
44
minitest
39
45
pg
Original file line number Diff line number Diff line change
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: "../"
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activerecord", "5.2.3"
6
+
7
+ gemspec path: "../"
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activerecord", "6.0.0"
6
+
7
+ gemspec path: "../"
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -41,4 +41,5 @@ Gem::Specification.new do |spec|
41
41
spec . add_development_dependency 'minitest'
42
42
spec . add_development_dependency 'pg'
43
43
spec . add_development_dependency 'rake'
44
+ spec . add_development_dependency "appraisal"
44
45
end
You can’t perform that action at this time.
0 commit comments