comma 4.5.0 → 4.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +47 -0
- data/.rubocop.yml +1 -0
- data/.travis.yml +5 -0
- data/Appraisals +21 -13
- data/Gemfile.lock +5 -4
- data/README.md +1 -1
- data/comma.gemspec +2 -1
- data/gemfiles/{active6.1.0.gemfile → active5.2.5.gemfile} +2 -2
- data/gemfiles/{active5.2.4.3.gemfile.lock → active5.2.5.gemfile.lock} +29 -28
- data/gemfiles/{active5.0.7.2.gemfile → active6.0.3.6.gemfile} +2 -2
- data/gemfiles/{active6.0.3.1.gemfile.lock → active6.0.3.6.gemfile.lock} +29 -28
- data/gemfiles/{active5.2.4.3.gemfile → active6.1.3.1.gemfile} +2 -2
- data/gemfiles/{active6.1.0.gemfile.lock → active6.1.3.1.gemfile.lock} +26 -25
- data/gemfiles/{active5.1.7.gemfile → active7.0.0.gemfile} +2 -2
- data/gemfiles/{active5.1.7.gemfile.lock → active7.0.0.gemfile.lock} +32 -34
- data/gemfiles/{rails5.1.7.gemfile → rails5.2.5.gemfile} +1 -1
- data/gemfiles/{rails5.2.4.3.gemfile.lock → rails5.2.5.gemfile.lock} +75 -74
- data/gemfiles/{rails6.0.3.1.gemfile → rails6.0.3.6.gemfile} +1 -1
- data/gemfiles/{rails6.0.3.1.gemfile.lock → rails6.0.3.6.gemfile.lock} +91 -90
- data/gemfiles/{rails6.1.0.gemfile → rails6.1.3.1.gemfile} +1 -1
- data/gemfiles/{rails6.1.0.gemfile.lock → rails6.1.3.1.gemfile.lock} +89 -88
- data/gemfiles/rails7.0.0.gemfile +12 -0
- data/gemfiles/{rails5.1.7.gemfile.lock → rails7.0.0.gemfile.lock} +108 -92
- data/lib/comma/version.rb +1 -1
- data/spec/rails_app/active_record/models.rb +1 -8
- metadata +33 -28
- data/gemfiles/active5.0.7.2.gemfile.lock +0 -113
- data/gemfiles/active6.0.3.1.gemfile +0 -12
- data/gemfiles/rails5.0.7.2.gemfile +0 -14
- data/gemfiles/rails5.0.7.2.gemfile.lock +0 -204
- data/gemfiles/rails5.2.4.3.gemfile +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a69656e8d0c5e3d0e4e5bc1e18af07ccd83fc6d2583fe8b24cf9cff600d83eb
|
4
|
+
data.tar.gz: 560cccf510eecc28b4c2ce6cd3c70a6aec139f7ff1cbb197587f52874e50f21f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a5aa582534e5a0cc633d120748be479c4a45692cca9f0a5ba2383ae9a5af59b3a0da983f674f3ee6a6adadf7eeb844b0c51f0e374eb9b0d810561566cf02a0c
|
7
|
+
data.tar.gz: c06497a6c9c1fa919037bffe81507037d0ca52d7b6e45b8634e6f6fa0f9aaec5a60304f2ba59f13e4e88f0f20d9fef47a068a37f6fdba666b52d58a5c083a02e
|
@@ -0,0 +1,47 @@
|
|
1
|
+
name: Build
|
2
|
+
on: [push, pull_request]
|
3
|
+
jobs:
|
4
|
+
build:
|
5
|
+
strategy:
|
6
|
+
matrix:
|
7
|
+
ruby: ['2.5', '2.6', '2.7', '3.0']
|
8
|
+
gemfile: ['active6.0.3.6', 'active6.1.3.1', 'rails6.0.3.6', 'rails6.1.3.1']
|
9
|
+
include:
|
10
|
+
- ruby: 2.5
|
11
|
+
gemfile: active5.2.5
|
12
|
+
- ruby: 2.6
|
13
|
+
gemfile: active5.2.5
|
14
|
+
- ruby: 2.7
|
15
|
+
gemfile: active5.2.5
|
16
|
+
- ruby: 2.5
|
17
|
+
gemfile: rails5.2.5
|
18
|
+
- ruby: 2.6
|
19
|
+
gemfile: rails5.2.5
|
20
|
+
- ruby: 2.7
|
21
|
+
gemfile: rails5.2.5
|
22
|
+
- ruby: 2.7
|
23
|
+
gemfile: active7.0.0
|
24
|
+
- ruby: 3.0
|
25
|
+
gemfile: active7.0.0
|
26
|
+
- ruby: 2.7
|
27
|
+
gemfile: rails7.0.0
|
28
|
+
- ruby: 3.0
|
29
|
+
gemfile: rails7.0.0
|
30
|
+
runs-on: ubuntu-latest
|
31
|
+
env:
|
32
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
33
|
+
services:
|
34
|
+
mongodb:
|
35
|
+
image: mongo:4.4.10
|
36
|
+
ports:
|
37
|
+
- 8081:8081
|
38
|
+
steps:
|
39
|
+
- uses: actions/checkout@v2
|
40
|
+
- uses: ruby/setup-ruby@v1
|
41
|
+
with:
|
42
|
+
ruby-version: ${{ matrix.ruby }}
|
43
|
+
bundler-cache: true
|
44
|
+
cache-version: 1
|
45
|
+
- run: bundle install --jobs 2 --retry 3
|
46
|
+
- run: bundle exec rubocop -P
|
47
|
+
- run: bundle exec rspec -f d spec
|
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
@@ -20,6 +20,7 @@ gemfile:
|
|
20
20
|
- gemfiles/rails5.2.4.3.gemfile
|
21
21
|
- gemfiles/rails6.0.3.1.gemfile
|
22
22
|
- gemfiles/rails6.1.0.gemfile
|
23
|
+
- gemfiles/railsedge.gemfile
|
23
24
|
matrix:
|
24
25
|
exclude:
|
25
26
|
- rvm: 2.4.10
|
@@ -30,6 +31,10 @@ matrix:
|
|
30
31
|
gemfile: gemfiles/rails6.0.3.1.gemfile
|
31
32
|
- rvm: 2.4.10
|
32
33
|
gemfile: gemfiles/rails6.1.0.gemfile
|
34
|
+
- rvm: 2.4.10
|
35
|
+
gemfile: gemfiles/railsedge.gemfile
|
36
|
+
- rvm: 2.5.8
|
37
|
+
gemfile: gemfiles/railsedge.gemfile
|
33
38
|
fast_finish: true
|
34
39
|
before_install:
|
35
40
|
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
|
data/Appraisals
CHANGED
@@ -1,9 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
[
|
4
|
-
'5.
|
5
|
-
'5.1.7',
|
6
|
-
'5.2.4.3'
|
4
|
+
'5.2.5'
|
7
5
|
].each do |version_number|
|
8
6
|
clean_number = version_number.gsub(/[<>~=]*/, '')
|
9
7
|
|
@@ -21,24 +19,34 @@
|
|
21
19
|
end
|
22
20
|
end
|
23
21
|
|
24
|
-
appraise 'rails6.0.3.
|
25
|
-
gem 'rails', '6.0.3.
|
22
|
+
appraise 'rails6.0.3.6' do
|
23
|
+
gem 'rails', '6.0.3.6'
|
26
24
|
gem 'rspec-rails'
|
27
25
|
gem 'test-unit'
|
28
26
|
end
|
29
27
|
|
30
|
-
appraise 'active6.0.3.
|
31
|
-
gem 'activesupport', '6.0.3.
|
32
|
-
gem 'activerecord', '6.0.3.
|
28
|
+
appraise 'active6.0.3.6' do
|
29
|
+
gem 'activesupport', '6.0.3.6'
|
30
|
+
gem 'activerecord', '6.0.3.6'
|
33
31
|
end
|
34
32
|
|
35
|
-
appraise 'rails6.1.
|
36
|
-
gem 'rails', '6.1.
|
33
|
+
appraise 'rails6.1.3.1' do
|
34
|
+
gem 'rails', '6.1.3.1'
|
37
35
|
gem 'rspec-rails'
|
38
36
|
gem 'test-unit'
|
39
37
|
end
|
40
38
|
|
41
|
-
appraise 'active6.1.
|
42
|
-
gem 'activesupport', '6.1.
|
43
|
-
gem 'activerecord', '6.1.
|
39
|
+
appraise 'active6.1.3.1' do
|
40
|
+
gem 'activesupport', '6.1.3.1'
|
41
|
+
gem 'activerecord', '6.1.3.1'
|
42
|
+
end
|
43
|
+
|
44
|
+
appraise 'rails7.0.0' do
|
45
|
+
gem 'rails', '7.0.0'
|
46
|
+
gem 'rspec-rails'
|
47
|
+
end
|
48
|
+
|
49
|
+
appraise 'active7.0.0' do
|
50
|
+
gem 'activesupport', '7.0.0'
|
51
|
+
gem 'activerecord', '7.0.0'
|
44
52
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
comma (4.
|
5
|
-
activesupport (>= 4.2.0
|
4
|
+
comma (4.6.0)
|
5
|
+
activesupport (>= 4.2.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
@@ -41,7 +41,7 @@ GEM
|
|
41
41
|
mime-types (3.2.2)
|
42
42
|
mime-types-data (~> 3.2015)
|
43
43
|
mime-types-data (3.2019.0331)
|
44
|
-
minitest (5.14.
|
44
|
+
minitest (5.14.4)
|
45
45
|
multi_json (1.1.0)
|
46
46
|
netrc (0.11.0)
|
47
47
|
parallel (1.17.0)
|
@@ -108,6 +108,7 @@ DEPENDENCIES
|
|
108
108
|
appraisal (~> 1.0.0)
|
109
109
|
comma!
|
110
110
|
coveralls
|
111
|
+
minitest (= 5.14.4)
|
111
112
|
rake (~> 13.0.1)
|
112
113
|
rspec (~> 3.5.0)
|
113
114
|
rspec-activemodel-mocks
|
@@ -117,4 +118,4 @@ DEPENDENCIES
|
|
117
118
|
sqlite3
|
118
119
|
|
119
120
|
BUNDLED WITH
|
120
|
-
1.
|
121
|
+
2.1.4
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
A library to generate comma seperated value (CSV) for Ruby objects like ActiveRecord and Array
|
4
4
|
|
5
|
-
[![Gem Version](https://badge.fury.io/rb/comma.svg)](http://badge.fury.io/rb/comma) [![Build Status](https://
|
5
|
+
[![Gem Version](https://badge.fury.io/rb/comma.svg)](http://badge.fury.io/rb/comma) [![Build Status](https://github.com/comma-csv/comma/actions/workflows/build.yml/badge.svg)](https://github.com/comma-csv/comma/actions/workflows/build.yml) [![Code Climate](https://codeclimate.com/github/comma-csv/comma.svg)](https://codeclimate.com/github/comma-csv/comma)
|
6
6
|
|
7
7
|
## Getting Started
|
8
8
|
|
data/comma.gemspec
CHANGED
@@ -18,9 +18,10 @@ Gem::Specification.new do |s|
|
|
18
18
|
|
19
19
|
s.licenses = ['MIT']
|
20
20
|
|
21
|
-
s.add_dependency 'activesupport',
|
21
|
+
s.add_dependency 'activesupport', '>= 4.2.0'
|
22
22
|
|
23
23
|
s.add_development_dependency 'appraisal', ['~> 1.0.0']
|
24
|
+
s.add_development_dependency 'minitest', '5.14.4'
|
24
25
|
s.add_development_dependency 'rake', '~> 13.0.1'
|
25
26
|
s.add_development_dependency 'rspec', ['~> 3.5.0']
|
26
27
|
s.add_development_dependency 'rspec-activemodel-mocks'
|
@@ -6,7 +6,7 @@ gem "coveralls", :require => false
|
|
6
6
|
gem "rubocop", "~> 0.67.2", :require => false
|
7
7
|
gem "rubocop-performance", :require => false
|
8
8
|
gem "sqlite3"
|
9
|
-
gem "activesupport", "
|
10
|
-
gem "activerecord", "
|
9
|
+
gem "activesupport", "5.2.5"
|
10
|
+
gem "activerecord", "5.2.5"
|
11
11
|
|
12
12
|
gemspec :path => "../"
|
@@ -1,19 +1,19 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
comma (4.
|
5
|
-
activesupport (>= 4.2.0
|
4
|
+
comma (4.6.0)
|
5
|
+
activesupport (>= 4.2.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (5.2.
|
11
|
-
activesupport (= 5.2.
|
12
|
-
activerecord (5.2.
|
13
|
-
activemodel (= 5.2.
|
14
|
-
activesupport (= 5.2.
|
10
|
+
activemodel (5.2.5)
|
11
|
+
activesupport (= 5.2.5)
|
12
|
+
activerecord (5.2.5)
|
13
|
+
activemodel (= 5.2.5)
|
14
|
+
activesupport (= 5.2.5)
|
15
15
|
arel (>= 9.0)
|
16
|
-
activesupport (5.2.
|
16
|
+
activesupport (5.2.5)
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
18
|
i18n (>= 0.7, < 2)
|
19
19
|
minitest (~> 5.1)
|
@@ -23,27 +23,27 @@ GEM
|
|
23
23
|
rake
|
24
24
|
thor (>= 0.14.0)
|
25
25
|
arel (9.0.0)
|
26
|
-
ast (2.4.
|
27
|
-
concurrent-ruby (1.1.
|
26
|
+
ast (2.4.2)
|
27
|
+
concurrent-ruby (1.1.9)
|
28
28
|
coveralls (0.8.23)
|
29
29
|
json (>= 1.8, < 3)
|
30
30
|
simplecov (~> 0.16.1)
|
31
31
|
term-ansicolor (~> 1.3)
|
32
32
|
thor (>= 0.19.4, < 2.0)
|
33
33
|
tins (~> 1.6)
|
34
|
-
diff-lcs (1.
|
35
|
-
docile (1.
|
36
|
-
i18n (1.8.
|
34
|
+
diff-lcs (1.4.4)
|
35
|
+
docile (1.4.0)
|
36
|
+
i18n (1.8.11)
|
37
37
|
concurrent-ruby (~> 1.0)
|
38
38
|
jaro_winkler (1.5.4)
|
39
|
-
json (2.
|
40
|
-
minitest (5.14.
|
41
|
-
parallel (1.
|
42
|
-
parser (
|
43
|
-
ast (~> 2.4.
|
44
|
-
psych (3.
|
39
|
+
json (2.6.1)
|
40
|
+
minitest (5.14.4)
|
41
|
+
parallel (1.21.0)
|
42
|
+
parser (3.0.2.0)
|
43
|
+
ast (~> 2.4.1)
|
44
|
+
psych (3.3.0)
|
45
45
|
rainbow (3.0.0)
|
46
|
-
rake (13.0.
|
46
|
+
rake (13.0.6)
|
47
47
|
rspec (3.5.0)
|
48
48
|
rspec-core (~> 3.5.0)
|
49
49
|
rspec-expectations (~> 3.5.0)
|
@@ -74,21 +74,21 @@ GEM
|
|
74
74
|
unicode-display_width (>= 1.4.0, < 1.6)
|
75
75
|
rubocop-performance (1.1.0)
|
76
76
|
rubocop (>= 0.67.0)
|
77
|
-
ruby-progressbar (1.
|
77
|
+
ruby-progressbar (1.11.0)
|
78
78
|
simplecov (0.16.1)
|
79
79
|
docile (~> 1.1)
|
80
80
|
json (>= 1.8, < 3)
|
81
81
|
simplecov-html (~> 0.10.0)
|
82
82
|
simplecov-html (0.10.2)
|
83
|
-
sqlite3 (1.
|
83
|
+
sqlite3 (1.4.2)
|
84
84
|
sync (0.5.0)
|
85
85
|
term-ansicolor (1.7.1)
|
86
86
|
tins (~> 1.0)
|
87
|
-
thor (1.0
|
87
|
+
thor (1.1.0)
|
88
88
|
thread_safe (0.3.6)
|
89
|
-
tins (1.
|
89
|
+
tins (1.29.1)
|
90
90
|
sync
|
91
|
-
tzinfo (1.2.
|
91
|
+
tzinfo (1.2.9)
|
92
92
|
thread_safe (~> 0.1)
|
93
93
|
unicode-display_width (1.5.0)
|
94
94
|
|
@@ -96,11 +96,12 @@ PLATFORMS
|
|
96
96
|
ruby
|
97
97
|
|
98
98
|
DEPENDENCIES
|
99
|
-
activerecord (= 5.2.
|
100
|
-
activesupport (= 5.2.
|
99
|
+
activerecord (= 5.2.5)
|
100
|
+
activesupport (= 5.2.5)
|
101
101
|
appraisal (~> 1.0.0)
|
102
102
|
comma!
|
103
103
|
coveralls
|
104
|
+
minitest (= 5.14.4)
|
104
105
|
rake (~> 13.0.1)
|
105
106
|
rspec (~> 3.5.0)
|
106
107
|
rspec-activemodel-mocks
|
@@ -110,4 +111,4 @@ DEPENDENCIES
|
|
110
111
|
sqlite3
|
111
112
|
|
112
113
|
BUNDLED WITH
|
113
|
-
1.
|
114
|
+
2.1.4
|
@@ -6,7 +6,7 @@ gem "coveralls", :require => false
|
|
6
6
|
gem "rubocop", "~> 0.67.2", :require => false
|
7
7
|
gem "rubocop-performance", :require => false
|
8
8
|
gem "sqlite3"
|
9
|
-
gem "activesupport", "
|
10
|
-
gem "activerecord", "
|
9
|
+
gem "activesupport", "6.0.3.6"
|
10
|
+
gem "activerecord", "6.0.3.6"
|
11
11
|
|
12
12
|
gemspec :path => "../"
|
@@ -1,18 +1,18 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
comma (4.
|
5
|
-
activesupport (>= 4.2.0
|
4
|
+
comma (4.6.0)
|
5
|
+
activesupport (>= 4.2.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (6.0.3.
|
11
|
-
activesupport (= 6.0.3.
|
12
|
-
activerecord (6.0.3.
|
13
|
-
activemodel (= 6.0.3.
|
14
|
-
activesupport (= 6.0.3.
|
15
|
-
activesupport (6.0.3.
|
10
|
+
activemodel (6.0.3.6)
|
11
|
+
activesupport (= 6.0.3.6)
|
12
|
+
activerecord (6.0.3.6)
|
13
|
+
activemodel (= 6.0.3.6)
|
14
|
+
activesupport (= 6.0.3.6)
|
15
|
+
activesupport (6.0.3.6)
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
17
|
i18n (>= 0.7, < 2)
|
18
18
|
minitest (~> 5.1)
|
@@ -22,27 +22,27 @@ GEM
|
|
22
22
|
bundler
|
23
23
|
rake
|
24
24
|
thor (>= 0.14.0)
|
25
|
-
ast (2.4.
|
26
|
-
concurrent-ruby (1.1.
|
25
|
+
ast (2.4.2)
|
26
|
+
concurrent-ruby (1.1.9)
|
27
27
|
coveralls (0.8.23)
|
28
28
|
json (>= 1.8, < 3)
|
29
29
|
simplecov (~> 0.16.1)
|
30
30
|
term-ansicolor (~> 1.3)
|
31
31
|
thor (>= 0.19.4, < 2.0)
|
32
32
|
tins (~> 1.6)
|
33
|
-
diff-lcs (1.
|
34
|
-
docile (1.
|
35
|
-
i18n (1.8.
|
33
|
+
diff-lcs (1.4.4)
|
34
|
+
docile (1.4.0)
|
35
|
+
i18n (1.8.11)
|
36
36
|
concurrent-ruby (~> 1.0)
|
37
37
|
jaro_winkler (1.5.4)
|
38
|
-
json (2.
|
39
|
-
minitest (5.14.
|
40
|
-
parallel (1.
|
41
|
-
parser (
|
42
|
-
ast (~> 2.4.
|
43
|
-
psych (3.
|
38
|
+
json (2.6.1)
|
39
|
+
minitest (5.14.4)
|
40
|
+
parallel (1.21.0)
|
41
|
+
parser (3.0.2.0)
|
42
|
+
ast (~> 2.4.1)
|
43
|
+
psych (3.3.0)
|
44
44
|
rainbow (3.0.0)
|
45
|
-
rake (13.0.
|
45
|
+
rake (13.0.6)
|
46
46
|
rspec (3.5.0)
|
47
47
|
rspec-core (~> 3.5.0)
|
48
48
|
rspec-expectations (~> 3.5.0)
|
@@ -73,7 +73,7 @@ GEM
|
|
73
73
|
unicode-display_width (>= 1.4.0, < 1.6)
|
74
74
|
rubocop-performance (1.1.0)
|
75
75
|
rubocop (>= 0.67.0)
|
76
|
-
ruby-progressbar (1.
|
76
|
+
ruby-progressbar (1.11.0)
|
77
77
|
simplecov (0.16.1)
|
78
78
|
docile (~> 1.1)
|
79
79
|
json (>= 1.8, < 3)
|
@@ -83,24 +83,25 @@ GEM
|
|
83
83
|
sync (0.5.0)
|
84
84
|
term-ansicolor (1.7.1)
|
85
85
|
tins (~> 1.0)
|
86
|
-
thor (1.0
|
86
|
+
thor (1.1.0)
|
87
87
|
thread_safe (0.3.6)
|
88
|
-
tins (1.
|
88
|
+
tins (1.29.1)
|
89
89
|
sync
|
90
|
-
tzinfo (1.2.
|
90
|
+
tzinfo (1.2.9)
|
91
91
|
thread_safe (~> 0.1)
|
92
92
|
unicode-display_width (1.5.0)
|
93
|
-
zeitwerk (2.
|
93
|
+
zeitwerk (2.5.1)
|
94
94
|
|
95
95
|
PLATFORMS
|
96
96
|
ruby
|
97
97
|
|
98
98
|
DEPENDENCIES
|
99
|
-
activerecord (= 6.0.3.
|
100
|
-
activesupport (= 6.0.3.
|
99
|
+
activerecord (= 6.0.3.6)
|
100
|
+
activesupport (= 6.0.3.6)
|
101
101
|
appraisal (~> 1.0.0)
|
102
102
|
comma!
|
103
103
|
coveralls
|
104
|
+
minitest (= 5.14.4)
|
104
105
|
rake (~> 13.0.1)
|
105
106
|
rspec (~> 3.5.0)
|
106
107
|
rspec-activemodel-mocks
|
@@ -110,4 +111,4 @@ DEPENDENCIES
|
|
110
111
|
sqlite3
|
111
112
|
|
112
113
|
BUNDLED WITH
|
113
|
-
1.
|
114
|
+
2.1.4
|
@@ -6,7 +6,7 @@ gem "coveralls", :require => false
|
|
6
6
|
gem "rubocop", "~> 0.67.2", :require => false
|
7
7
|
gem "rubocop-performance", :require => false
|
8
8
|
gem "sqlite3"
|
9
|
-
gem "activesupport", "
|
10
|
-
gem "activerecord", "
|
9
|
+
gem "activesupport", "6.1.3.1"
|
10
|
+
gem "activerecord", "6.1.3.1"
|
11
11
|
|
12
12
|
gemspec :path => "../"
|
@@ -1,18 +1,18 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
comma (4.
|
5
|
-
activesupport (>= 4.2.0
|
4
|
+
comma (4.6.0)
|
5
|
+
activesupport (>= 4.2.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (6.1.
|
11
|
-
activesupport (= 6.1.
|
12
|
-
activerecord (6.1.
|
13
|
-
activemodel (= 6.1.
|
14
|
-
activesupport (= 6.1.
|
15
|
-
activesupport (6.1.
|
10
|
+
activemodel (6.1.3.1)
|
11
|
+
activesupport (= 6.1.3.1)
|
12
|
+
activerecord (6.1.3.1)
|
13
|
+
activemodel (= 6.1.3.1)
|
14
|
+
activesupport (= 6.1.3.1)
|
15
|
+
activesupport (6.1.3.1)
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
17
|
i18n (>= 1.6, < 2)
|
18
18
|
minitest (>= 5.1)
|
@@ -22,8 +22,8 @@ GEM
|
|
22
22
|
bundler
|
23
23
|
rake
|
24
24
|
thor (>= 0.14.0)
|
25
|
-
ast (2.4.
|
26
|
-
concurrent-ruby (1.1.
|
25
|
+
ast (2.4.2)
|
26
|
+
concurrent-ruby (1.1.9)
|
27
27
|
coveralls (0.8.23)
|
28
28
|
json (>= 1.8, < 3)
|
29
29
|
simplecov (~> 0.16.1)
|
@@ -31,18 +31,18 @@ GEM
|
|
31
31
|
thor (>= 0.19.4, < 2.0)
|
32
32
|
tins (~> 1.6)
|
33
33
|
diff-lcs (1.4.4)
|
34
|
-
docile (1.
|
35
|
-
i18n (1.8.
|
34
|
+
docile (1.4.0)
|
35
|
+
i18n (1.8.11)
|
36
36
|
concurrent-ruby (~> 1.0)
|
37
37
|
jaro_winkler (1.5.4)
|
38
|
-
json (2.
|
39
|
-
minitest (5.14.
|
40
|
-
parallel (1.
|
41
|
-
parser (
|
38
|
+
json (2.6.1)
|
39
|
+
minitest (5.14.4)
|
40
|
+
parallel (1.21.0)
|
41
|
+
parser (3.0.2.0)
|
42
42
|
ast (~> 2.4.1)
|
43
|
-
psych (3.
|
43
|
+
psych (3.3.0)
|
44
44
|
rainbow (3.0.0)
|
45
|
-
rake (13.0.
|
45
|
+
rake (13.0.6)
|
46
46
|
rspec (3.5.0)
|
47
47
|
rspec-core (~> 3.5.0)
|
48
48
|
rspec-expectations (~> 3.5.0)
|
@@ -73,7 +73,7 @@ GEM
|
|
73
73
|
unicode-display_width (>= 1.4.0, < 1.6)
|
74
74
|
rubocop-performance (1.1.0)
|
75
75
|
rubocop (>= 0.67.0)
|
76
|
-
ruby-progressbar (1.
|
76
|
+
ruby-progressbar (1.11.0)
|
77
77
|
simplecov (0.16.1)
|
78
78
|
docile (~> 1.1)
|
79
79
|
json (>= 1.8, < 3)
|
@@ -83,23 +83,24 @@ GEM
|
|
83
83
|
sync (0.5.0)
|
84
84
|
term-ansicolor (1.7.1)
|
85
85
|
tins (~> 1.0)
|
86
|
-
thor (1.0
|
87
|
-
tins (1.
|
86
|
+
thor (1.1.0)
|
87
|
+
tins (1.29.1)
|
88
88
|
sync
|
89
89
|
tzinfo (2.0.4)
|
90
90
|
concurrent-ruby (~> 1.0)
|
91
91
|
unicode-display_width (1.5.0)
|
92
|
-
zeitwerk (2.
|
92
|
+
zeitwerk (2.5.1)
|
93
93
|
|
94
94
|
PLATFORMS
|
95
95
|
ruby
|
96
96
|
|
97
97
|
DEPENDENCIES
|
98
|
-
activerecord (= 6.1.
|
99
|
-
activesupport (= 6.1.
|
98
|
+
activerecord (= 6.1.3.1)
|
99
|
+
activesupport (= 6.1.3.1)
|
100
100
|
appraisal (~> 1.0.0)
|
101
101
|
comma!
|
102
102
|
coveralls
|
103
|
+
minitest (= 5.14.4)
|
103
104
|
rake (~> 13.0.1)
|
104
105
|
rspec (~> 3.5.0)
|
105
106
|
rspec-activemodel-mocks
|
@@ -109,4 +110,4 @@ DEPENDENCIES
|
|
109
110
|
sqlite3
|
110
111
|
|
111
112
|
BUNDLED WITH
|
112
|
-
1.
|
113
|
+
2.1.4
|
@@ -6,7 +6,7 @@ gem "coveralls", :require => false
|
|
6
6
|
gem "rubocop", "~> 0.67.2", :require => false
|
7
7
|
gem "rubocop-performance", :require => false
|
8
8
|
gem "sqlite3"
|
9
|
-
gem "activesupport", "
|
10
|
-
gem "activerecord", "
|
9
|
+
gem "activesupport", "7.0.0"
|
10
|
+
gem "activerecord", "7.0.0"
|
11
11
|
|
12
12
|
gemspec :path => "../"
|