comma 4.4.0 → 4.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +48 -0
  3. data/.rubocop.yml +3 -1
  4. data/.rubocop_todo.yml +40 -2
  5. data/.travis.yml +12 -1
  6. data/Appraisals +27 -8
  7. data/Gemfile +1 -1
  8. data/Gemfile.lock +34 -33
  9. data/README.md +2 -2
  10. data/comma.gemspec +2 -1
  11. data/gemfiles/{active5.1.7.gemfile → active5.2.5.gemfile} +3 -3
  12. data/gemfiles/{active5.2.4.3.gemfile.lock → active5.2.5.gemfile.lock} +44 -39
  13. data/gemfiles/{active5.2.4.3.gemfile → active6.0.3.6.gemfile} +3 -3
  14. data/gemfiles/{active6.0.3.1.gemfile.lock → active6.0.3.6.gemfile.lock} +44 -39
  15. data/gemfiles/{active6.0.3.1.gemfile → active6.1.3.1.gemfile} +3 -3
  16. data/gemfiles/{active5.0.7.2.gemfile.lock → active6.1.3.1.gemfile.lock} +50 -46
  17. data/gemfiles/active7.0.0.gemfile +12 -0
  18. data/gemfiles/{active5.1.7.gemfile.lock → active7.0.0.gemfile.lock} +47 -45
  19. data/gemfiles/{rails5.1.7.gemfile → rails5.2.5.gemfile} +2 -2
  20. data/gemfiles/{rails5.2.4.3.gemfile.lock → rails5.2.5.gemfile.lock} +90 -85
  21. data/gemfiles/{rails6.0.3.1.gemfile → rails6.0.3.6.gemfile} +2 -2
  22. data/gemfiles/{rails6.0.3.1.gemfile.lock → rails6.0.3.6.gemfile.lock} +106 -101
  23. data/gemfiles/rails6.1.3.1.gemfile +13 -0
  24. data/gemfiles/rails6.1.3.1.gemfile.lock +235 -0
  25. data/gemfiles/rails7.0.0.gemfile +12 -0
  26. data/gemfiles/rails7.0.0.gemfile.lock +224 -0
  27. data/lib/comma/mongoid.rb +2 -1
  28. data/lib/comma/version.rb +1 -1
  29. data/spec/controllers/users_controller_spec.rb +10 -10
  30. data/spec/rails_app/active_record/models.rb +1 -8
  31. metadata +35 -41
  32. data/gemfiles/active5.0.7.2.gemfile +0 -12
  33. data/gemfiles/rails5.0.7.2.gemfile +0 -14
  34. data/gemfiles/rails5.0.7.2.gemfile.lock +0 -204
  35. data/gemfiles/rails5.1.7.gemfile.lock +0 -204
  36. data/gemfiles/rails5.2.4.3.gemfile +0 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 248d043106e94ec7a4e9b794fb880f4e1873f95b330d60ea7fb526bd1baa9b7a
4
- data.tar.gz: 67cb2c60aa8cfd23e9349595184be93192540bd066af6fb307442890f6d4d875
3
+ metadata.gz: 3cae4bf01d8d4519c1b4c8b99259f566312a9636cf0e22d94ff794354b96be8c
4
+ data.tar.gz: dc9e68fe88370b01c8c750f9aa0879b820a1667609e6939d63cbd33dd367cab4
5
5
  SHA512:
6
- metadata.gz: e46f27fec1731062a30240672b159f2a1b04159f5dc61766b2d04c1ac473dc01438d5c1233ca15bcabfe227873938a098af2f81a1b207f45fed7f7a6a85e0a67
7
- data.tar.gz: a196a677d7a73e927d71dea3e3407a5dc806e4727f6a20431f21d48b2bc13b16826c8a9234db26ac62b6881d5444a6358e1c94e93c4ab276d97a126d57fb7ca9
6
+ metadata.gz: 95c211057b6466b298ba52f35a0ab629f368c58b52e4a688cee131391d30e82db499511beceeb10b0a589c9872063794e7874f8730c50f000210d8f8be38b5ec
7
+ data.tar.gz: 66deaf828d3deae2d1475a93a59f3959c0675ca207b97521ce483c3efd4fbc40fd022a668bf275884a0912d892103e13dfd950c2f3b2b2cf6cfb70d8b5b45d33
@@ -0,0 +1,48 @@
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
+ RUBY_OPT: --disable=did_you_mean
34
+ services:
35
+ mongodb:
36
+ image: mongo:4.4.10
37
+ ports:
38
+ - 8081:8081
39
+ steps:
40
+ - uses: actions/checkout@v3
41
+ - uses: ruby/setup-ruby@v1
42
+ with:
43
+ ruby-version: ${{ matrix.ruby }}
44
+ bundler-cache: true
45
+ cache-version: 1
46
+ - run: bundle install --jobs 2 --retry 3
47
+ - run: bundle exec rubocop -P
48
+ - run: bundle exec rspec -f d spec
data/.rubocop.yml CHANGED
@@ -4,9 +4,11 @@ require: rubocop-performance
4
4
 
5
5
  AllCops:
6
6
  DisplayCopNames: true
7
- TargetRubyVersion: 2.3
8
7
  Exclude:
9
8
  - 'gemfiles/**/*'
9
+ - 'vendor/**/*'
10
+ NewCops: enable
11
+ TargetRubyVersion: 2.5
10
12
 
11
13
  Metrics/LineLength:
12
14
  IgnoreCopDirectives: true
data/.rubocop_todo.yml CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  # Offense count: 2
10
10
  Metrics/AbcSize:
11
- Max: 21
11
+ Max: 22
12
12
 
13
13
  # Offense count: 3
14
14
  # Configuration parameters: CountComments.
@@ -43,10 +43,11 @@ Style/Documentation:
43
43
  - 'lib/comma/object.rb'
44
44
  - 'lib/comma/relation.rb'
45
45
 
46
- Style/MethodMissingSuper:
46
+ Lint/MissingSuper:
47
47
  Exclude:
48
48
  - 'lib/comma/data_extractor.rb'
49
49
  - 'lib/comma/header_extractor.rb'
50
+ - 'spec/comma/comma_spec.rb'
50
51
 
51
52
  Style/MissingRespondToMissing:
52
53
  Exclude:
@@ -59,3 +60,40 @@ Style/MissingRespondToMissing:
59
60
  Naming/VariableName:
60
61
  Exclude:
61
62
  - 'spec/comma/comma_spec.rb'
63
+
64
+ Style/StringConcatenation:
65
+ Exclude:
66
+ - 'spec/comma/comma_spec.rb'
67
+ - 'spec/comma/rails/active_record_spec.rb'
68
+ - 'spec/spec_helper.rb'
69
+
70
+ Lint/NonDeterministicRequireOrder:
71
+ Exclude:
72
+ - 'spec/spec_helper.rb'
73
+
74
+ Style/RedundantBegin:
75
+ Exclude:
76
+ - 'spec/spec_helper.rb'
77
+
78
+ Layout/SpaceAroundMethodCallOperator:
79
+ Exclude:
80
+ - 'spec/controllers/users_controller_spec.rb'
81
+
82
+ Lint/ConstantDefinitionInBlock:
83
+ Exclude:
84
+ - 'spec/comma/comma_spec.rb'
85
+ - 'spec/comma/rails/active_record_spec.rb'
86
+ - 'spec/comma/rails/data_mapper_collection_spec.rb'
87
+ - 'spec/comma/rails/mongoid_spec.rb'
88
+
89
+ Layout/EmptyLinesAroundAttributeAccessor:
90
+ Exclude:
91
+ - 'spec/comma/comma_spec.rb'
92
+
93
+ Migration/DepartmentName:
94
+ Exclude:
95
+ - spec/comma/comma_spec.rb
96
+
97
+ Gemspec/RequiredRubyVersion:
98
+ Exclude:
99
+ - comma.gemspec
data/.travis.yml CHANGED
@@ -8,22 +8,33 @@ rvm:
8
8
  - 2.4.10
9
9
  - 2.5.8
10
10
  - 2.6.6
11
- - 2.7.1
11
+ - 2.7.2
12
12
  gemfile:
13
13
  - gemfiles/active5.0.7.2.gemfile
14
14
  - gemfiles/active5.1.7.gemfile
15
15
  - gemfiles/active5.2.4.3.gemfile
16
16
  - gemfiles/active6.0.3.1.gemfile
17
+ - gemfiles/active6.1.0.gemfile
17
18
  - gemfiles/rails5.0.7.2.gemfile
18
19
  - gemfiles/rails5.1.7.gemfile
19
20
  - gemfiles/rails5.2.4.3.gemfile
20
21
  - gemfiles/rails6.0.3.1.gemfile
22
+ - gemfiles/rails6.1.0.gemfile
23
+ - gemfiles/railsedge.gemfile
21
24
  matrix:
22
25
  exclude:
23
26
  - rvm: 2.4.10
24
27
  gemfile: gemfiles/active6.0.3.1.gemfile
28
+ - rvm: 2.4.10
29
+ gemfile: gemfiles/active6.1.0.gemfile
25
30
  - rvm: 2.4.10
26
31
  gemfile: gemfiles/rails6.0.3.1.gemfile
32
+ - rvm: 2.4.10
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
27
38
  fast_finish: true
28
39
  before_install:
29
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.0.7.2',
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,13 +19,34 @@
21
19
  end
22
20
  end
23
21
 
24
- appraise 'rails6.0.3.1' do
25
- gem 'rails', '6.0.3.1'
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.1' do
31
- gem 'activesupport', '6.0.3.1'
32
- gem 'activerecord', '6.0.3.1'
28
+ appraise 'active6.0.3.6' do
29
+ gem 'activesupport', '6.0.3.6'
30
+ gem 'activerecord', '6.0.3.6'
31
+ end
32
+
33
+ appraise 'rails6.1.3.1' do
34
+ gem 'rails', '6.1.3.1'
35
+ gem 'rspec-rails'
36
+ gem 'test-unit'
37
+ end
38
+
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'
33
52
  end
data/Gemfile CHANGED
@@ -5,6 +5,6 @@ source 'https://rubygems.org'
5
5
  gemspec
6
6
 
7
7
  gem 'coveralls', require: false
8
- gem 'rubocop', '~> 0.67.2', require: false
8
+ gem 'rubocop', '~> 1.0.0', require: false
9
9
  gem 'rubocop-performance', require: false
10
10
  gem 'sqlite3'
data/Gemfile.lock CHANGED
@@ -1,27 +1,26 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comma (4.4.0)
5
- activesupport (>= 4.2.0, < 6.1)
4
+ comma (4.7.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.1)
11
- activesupport (= 6.0.3.1)
12
- activesupport (6.0.3.1)
10
+ activemodel (7.0.3.1)
11
+ activesupport (= 7.0.3.1)
12
+ activesupport (7.0.3.1)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (>= 0.7, < 2)
15
- minitest (~> 5.1)
16
- tzinfo (~> 1.1)
17
- zeitwerk (~> 2.2, >= 2.2.2)
14
+ i18n (>= 1.6, < 2)
15
+ minitest (>= 5.1)
16
+ tzinfo (~> 2.0)
18
17
  appraisal (1.0.3)
19
18
  bundler
20
19
  rake
21
20
  thor (>= 0.14.0)
22
- ast (2.4.0)
21
+ ast (2.4.2)
23
22
  colorize (0.7.5)
24
- concurrent-ruby (1.1.6)
23
+ concurrent-ruby (1.1.10)
25
24
  coveralls (0.5.8)
26
25
  colorize
27
26
  json
@@ -34,26 +33,26 @@ GEM
34
33
  unf (>= 0.0.5, < 1.0.0)
35
34
  http-cookie (1.0.3)
36
35
  domain_name (~> 0.5)
37
- i18n (1.8.3)
36
+ i18n (1.12.0)
38
37
  concurrent-ruby (~> 1.0)
39
- jaro_winkler (1.5.2)
40
- json (2.2.0)
38
+ json (2.3.1)
41
39
  mime-types (3.2.2)
42
40
  mime-types-data (~> 3.2015)
43
41
  mime-types-data (3.2019.0331)
44
- minitest (5.14.1)
42
+ minitest (5.14.4)
45
43
  multi_json (1.1.0)
46
44
  netrc (0.11.0)
47
- parallel (1.17.0)
48
- parser (2.6.2.1)
49
- ast (~> 2.4.0)
50
- psych (3.1.0)
51
- rainbow (3.0.0)
45
+ parallel (1.22.1)
46
+ parser (3.1.2.0)
47
+ ast (~> 2.4.1)
48
+ rainbow (3.1.1)
52
49
  rake (13.0.1)
50
+ regexp_parser (2.5.0)
53
51
  rest-client (2.0.2)
54
52
  http-cookie (>= 1.0.2, < 2.0)
55
53
  mime-types (>= 1.16, < 4.0)
56
54
  netrc (~> 0.8)
55
+ rexml (3.2.5)
57
56
  rspec (3.5.0)
58
57
  rspec-core (~> 3.5.0)
59
58
  rspec-expectations (~> 3.5.0)
@@ -74,17 +73,20 @@ GEM
74
73
  diff-lcs (>= 1.2.0, < 2.0)
75
74
  rspec-support (~> 3.5.0)
76
75
  rspec-support (3.5.0)
77
- rubocop (0.67.2)
78
- jaro_winkler (~> 1.5.1)
76
+ rubocop (1.0.0)
79
77
  parallel (~> 1.10)
80
- parser (>= 2.5, != 2.5.1.1)
81
- psych (>= 3.1.0)
78
+ parser (>= 2.7.1.5)
82
79
  rainbow (>= 2.2.2, < 4.0)
80
+ regexp_parser (>= 1.8)
81
+ rexml
82
+ rubocop-ast (>= 0.6.0)
83
83
  ruby-progressbar (~> 1.7)
84
- unicode-display_width (>= 1.4.0, < 1.6)
84
+ unicode-display_width (>= 1.4.0, < 2.0)
85
+ rubocop-ast (1.19.1)
86
+ parser (>= 3.1.1.0)
85
87
  rubocop-performance (1.1.0)
86
88
  rubocop (>= 0.67.0)
87
- ruby-progressbar (1.10.0)
89
+ ruby-progressbar (1.11.0)
88
90
  simplecov (0.9.2)
89
91
  docile (~> 1.1.0)
90
92
  multi_json (~> 1.0)
@@ -92,14 +94,12 @@ GEM
92
94
  simplecov-html (0.9.0)
93
95
  sqlite3 (1.3.11)
94
96
  thor (0.19.1)
95
- thread_safe (0.3.6)
96
- tzinfo (1.2.7)
97
- thread_safe (~> 0.1)
97
+ tzinfo (2.0.5)
98
+ concurrent-ruby (~> 1.0)
98
99
  unf (0.1.4)
99
100
  unf_ext
100
101
  unf_ext (0.0.7.6)
101
- unicode-display_width (1.5.0)
102
- zeitwerk (2.3.0)
102
+ unicode-display_width (1.8.0)
103
103
 
104
104
  PLATFORMS
105
105
  ruby
@@ -108,13 +108,14 @@ 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
114
115
  rspec-its
115
- rubocop (~> 0.67.2)
116
+ rubocop (~> 1.0.0)
116
117
  rubocop-performance
117
118
  sqlite3
118
119
 
119
120
  BUNDLED WITH
120
- 1.17.3
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.png)](http://badge.fury.io/rb/comma) [![Build Status](https://travis-ci.org/comma-csv/comma.png?branch=master)](https://travis-ci.org/comma-csv/comma) [![Code Climate](https://codeclimate.com/github/comma-csv/comma.png)](https://codeclimate.com/github/comma-csv/comma)
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
 
@@ -17,7 +17,7 @@ Comma is distributed as a gem, best installed via Bundler.
17
17
  Include the gem in your Gemfile:
18
18
 
19
19
  ```ruby
20
- gem 'comma', '~> 4.4.0'
20
+ gem 'comma', '~> 4.5.0'
21
21
  ```
22
22
 
23
23
  Or, if you want to live life on the edge, you can get master from the main comma repository:
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', ['>= 4.2.0', '< 6.1']
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'
@@ -3,10 +3,10 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "coveralls", :require => false
6
- gem "rubocop", "~> 0.67.2", :require => false
6
+ gem "rubocop", "~> 1.0.0", :require => false
7
7
  gem "rubocop-performance", :require => false
8
8
  gem "sqlite3"
9
- gem "activesupport", "5.1.7"
10
- gem "activerecord", "5.1.7"
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.4.0)
5
- activesupport (>= 4.2.0, < 6.1)
4
+ comma (4.7.0)
5
+ activesupport (>= 4.2.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (5.2.4.3)
11
- activesupport (= 5.2.4.3)
12
- activerecord (5.2.4.3)
13
- activemodel (= 5.2.4.3)
14
- activesupport (= 5.2.4.3)
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.4.3)
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.1)
27
- concurrent-ruby (1.1.6)
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.3)
35
- docile (1.3.2)
36
- i18n (1.8.3)
34
+ diff-lcs (1.4.4)
35
+ docile (1.4.0)
36
+ i18n (1.8.11)
37
37
  concurrent-ruby (~> 1.0)
38
- jaro_winkler (1.5.4)
39
- json (2.3.0)
40
- minitest (5.14.1)
41
- parallel (1.19.1)
42
- parser (2.7.1.3)
43
- ast (~> 2.4.0)
44
- psych (3.1.0)
45
- rainbow (3.0.0)
46
- rake (13.0.1)
38
+ json (2.6.1)
39
+ minitest (5.14.4)
40
+ parallel (1.22.1)
41
+ parser (3.1.2.0)
42
+ ast (~> 2.4.1)
43
+ rainbow (3.1.1)
44
+ rake (13.0.6)
45
+ regexp_parser (2.5.0)
46
+ rexml (3.2.5)
47
47
  rspec (3.5.0)
48
48
  rspec-core (~> 3.5.0)
49
49
  rspec-expectations (~> 3.5.0)
@@ -64,50 +64,55 @@ GEM
64
64
  diff-lcs (>= 1.2.0, < 2.0)
65
65
  rspec-support (~> 3.5.0)
66
66
  rspec-support (3.5.0)
67
- rubocop (0.67.2)
68
- jaro_winkler (~> 1.5.1)
67
+ rubocop (1.0.0)
69
68
  parallel (~> 1.10)
70
- parser (>= 2.5, != 2.5.1.1)
71
- psych (>= 3.1.0)
69
+ parser (>= 2.7.1.5)
72
70
  rainbow (>= 2.2.2, < 4.0)
71
+ regexp_parser (>= 1.8)
72
+ rexml
73
+ rubocop-ast (>= 0.6.0)
73
74
  ruby-progressbar (~> 1.7)
74
- unicode-display_width (>= 1.4.0, < 1.6)
75
- rubocop-performance (1.1.0)
76
- rubocop (>= 0.67.0)
77
- ruby-progressbar (1.10.1)
75
+ unicode-display_width (>= 1.4.0, < 2.0)
76
+ rubocop-ast (1.17.0)
77
+ parser (>= 3.1.1.0)
78
+ rubocop-performance (1.10.2)
79
+ rubocop (>= 0.90.0, < 2.0)
80
+ rubocop-ast (>= 0.4.0)
81
+ ruby-progressbar (1.11.0)
78
82
  simplecov (0.16.1)
79
83
  docile (~> 1.1)
80
84
  json (>= 1.8, < 3)
81
85
  simplecov-html (~> 0.10.0)
82
86
  simplecov-html (0.10.2)
83
- sqlite3 (1.3.13)
87
+ sqlite3 (1.4.2)
84
88
  sync (0.5.0)
85
89
  term-ansicolor (1.7.1)
86
90
  tins (~> 1.0)
87
- thor (1.0.1)
91
+ thor (1.1.0)
88
92
  thread_safe (0.3.6)
89
- tins (1.25.0)
93
+ tins (1.29.1)
90
94
  sync
91
- tzinfo (1.2.7)
95
+ tzinfo (1.2.9)
92
96
  thread_safe (~> 0.1)
93
- unicode-display_width (1.5.0)
97
+ unicode-display_width (1.8.0)
94
98
 
95
99
  PLATFORMS
96
100
  ruby
97
101
 
98
102
  DEPENDENCIES
99
- activerecord (= 5.2.4.3)
100
- activesupport (= 5.2.4.3)
103
+ activerecord (= 5.2.5)
104
+ activesupport (= 5.2.5)
101
105
  appraisal (~> 1.0.0)
102
106
  comma!
103
107
  coveralls
108
+ minitest (= 5.14.4)
104
109
  rake (~> 13.0.1)
105
110
  rspec (~> 3.5.0)
106
111
  rspec-activemodel-mocks
107
112
  rspec-its
108
- rubocop (~> 0.67.2)
113
+ rubocop (~> 1.0.0)
109
114
  rubocop-performance
110
115
  sqlite3
111
116
 
112
117
  BUNDLED WITH
113
- 1.17.3
118
+ 2.1.4
@@ -3,10 +3,10 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "coveralls", :require => false
6
- gem "rubocop", "~> 0.67.2", :require => false
6
+ gem "rubocop", "~> 1.0.0", :require => false
7
7
  gem "rubocop-performance", :require => false
8
8
  gem "sqlite3"
9
- gem "activesupport", "5.2.4.3"
10
- gem "activerecord", "5.2.4.3"
9
+ gem "activesupport", "6.0.3.6"
10
+ gem "activerecord", "6.0.3.6"
11
11
 
12
12
  gemspec :path => "../"