comma 4.3.1 → 4.6.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 (48) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +47 -0
  3. data/.rubocop.yml +3 -0
  4. data/.travis.yml +25 -32
  5. data/Appraisals +31 -6
  6. data/Gemfile +3 -1
  7. data/Gemfile.lock +39 -23
  8. data/README.md +3 -3
  9. data/comma.gemspec +3 -5
  10. data/gemfiles/active5.2.5.gemfile +12 -0
  11. data/gemfiles/{active5.2.3.gemfile.lock → active5.2.5.gemfile.lock} +40 -34
  12. data/gemfiles/active6.0.3.6.gemfile +12 -0
  13. data/gemfiles/{active5.1.7.gemfile.lock → active6.0.3.6.gemfile.lock} +42 -36
  14. data/gemfiles/active6.1.3.1.gemfile +12 -0
  15. data/gemfiles/{active4.2.11.1.gemfile.lock → active6.1.3.1.gemfile.lock} +47 -44
  16. data/gemfiles/active7.0.0.gemfile +12 -0
  17. data/gemfiles/{active5.0.7.2.gemfile.lock → active7.0.0.gemfile.lock} +44 -41
  18. data/gemfiles/{rails5.2.3.gemfile → rails5.2.5.gemfile} +5 -2
  19. data/gemfiles/{rails5.2.3.gemfile.lock → rails5.2.5.gemfile.lock} +93 -86
  20. data/gemfiles/{rails4.2.11.1.gemfile → rails6.0.3.6.gemfile} +4 -2
  21. data/gemfiles/rails6.0.3.6.gemfile.lock +228 -0
  22. data/gemfiles/{rails5.0.7.2.gemfile → rails6.1.3.1.gemfile} +4 -2
  23. data/gemfiles/rails6.1.3.1.gemfile.lock +231 -0
  24. data/gemfiles/{rails5.1.7.gemfile → rails7.0.0.gemfile} +4 -3
  25. data/gemfiles/rails7.0.0.gemfile.lock +220 -0
  26. data/lib/comma/generator.rb +2 -2
  27. data/lib/comma/header_extractor.rb +2 -1
  28. data/lib/comma/version.rb +1 -1
  29. data/lib/comma.rb +2 -1
  30. data/spec/comma/comma_spec.rb +3 -3
  31. data/spec/comma/data_extractor_spec.rb +8 -8
  32. data/spec/comma/header_extractor_spec.rb +5 -5
  33. data/spec/comma/rails/active_record_spec.rb +13 -14
  34. data/spec/controllers/users_controller_spec.rb +45 -33
  35. data/spec/rails_app/active_record/models.rb +1 -8
  36. data/spec/spec_helper.rb +14 -1
  37. metadata +36 -45
  38. data/gemfiles/active4.2.11.1.gemfile +0 -10
  39. data/gemfiles/active5.0.7.2.gemfile +0 -10
  40. data/gemfiles/active5.1.7.gemfile +0 -10
  41. data/gemfiles/active5.2.3.gemfile +0 -10
  42. data/gemfiles/active6.0.0.gemfile +0 -10
  43. data/gemfiles/active6.0.0.gemfile.lock +0 -108
  44. data/gemfiles/rails4.2.11.1.gemfile.lock +0 -191
  45. data/gemfiles/rails5.0.7.2.gemfile.lock +0 -198
  46. data/gemfiles/rails5.1.7.gemfile.lock +0 -198
  47. data/gemfiles/rails6.0.0.gemfile +0 -11
  48. data/gemfiles/rails6.0.0.gemfile.lock +0 -237
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a61f971ecc362e68616871f7a9ba993f37fabe4a9be0b29f4c994cc6a027e76
4
- data.tar.gz: 017a2e83d19ab9276de0e0ce8679e1bdfdcc53a0195bf013450f6e814b259726
3
+ metadata.gz: 9a69656e8d0c5e3d0e4e5bc1e18af07ccd83fc6d2583fe8b24cf9cff600d83eb
4
+ data.tar.gz: 560cccf510eecc28b4c2ce6cd3c70a6aec139f7ff1cbb197587f52874e50f21f
5
5
  SHA512:
6
- metadata.gz: ac95f5a083ac6cc2f3ab3b7665690ad2c6087675318abb63513502d63ebd16622b9a0ee41c56743f2a00da6d078a726f635e355c5ded8969dace49d883dc88b7
7
- data.tar.gz: b43f6c813c3d1cd7b84f7f415c3d346d3fae426739a7ec13591187129ae58a369cda008d014029cec4ad3c146f11556e0049776bd700f50380a512b6b7333eef
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
@@ -1,10 +1,13 @@
1
1
  inherit_from: .rubocop_todo.yml
2
2
 
3
+ require: rubocop-performance
4
+
3
5
  AllCops:
4
6
  DisplayCopNames: true
5
7
  TargetRubyVersion: 2.3
6
8
  Exclude:
7
9
  - 'gemfiles/**/*'
10
+ - 'vendor/**/*'
8
11
 
9
12
  Metrics/LineLength:
10
13
  IgnoreCopDirectives: true
data/.travis.yml CHANGED
@@ -5,47 +5,40 @@ services: mongodb
5
5
  language: ruby
6
6
  cache: bundler
7
7
  rvm:
8
- - 2.3.8
9
- - 2.4.6
10
- - 2.5.5
11
- - 2.6.2
8
+ - 2.4.10
9
+ - 2.5.8
10
+ - 2.6.6
11
+ - 2.7.2
12
12
  gemfile:
13
- - gemfiles/active4.2.11.1.gemfile
14
13
  - gemfiles/active5.0.7.2.gemfile
15
14
  - gemfiles/active5.1.7.gemfile
16
- - gemfiles/active5.2.3.gemfile
17
- - gemfiles/active6.0.0.gemfile
18
- - gemfiles/rails4.2.11.1.gemfile
15
+ - gemfiles/active5.2.4.3.gemfile
16
+ - gemfiles/active6.0.3.1.gemfile
17
+ - gemfiles/active6.1.0.gemfile
19
18
  - gemfiles/rails5.0.7.2.gemfile
20
19
  - gemfiles/rails5.1.7.gemfile
21
- - gemfiles/rails5.2.3.gemfile
22
- - gemfiles/rails6.0.0.gemfile
20
+ - gemfiles/rails5.2.4.3.gemfile
21
+ - gemfiles/rails6.0.3.1.gemfile
22
+ - gemfiles/rails6.1.0.gemfile
23
+ - gemfiles/railsedge.gemfile
23
24
  matrix:
24
25
  exclude:
25
- - rvm: 2.3.8
26
- gemfile: gemfiles/active6.0.0.gemfile
27
- - rvm: 2.3.8
28
- gemfile: gemfiles/rails6.0.0.gemfile
29
- - rvm: 2.4.6
30
- gemfile: gemfiles/active4.2.11.1.gemfile
31
- - rvm: 2.4.6
32
- gemfile: gemfiles/active6.0.0.gemfile
33
- - rvm: 2.4.6
34
- gemfile: gemfiles/rails4.2.11.1.gemfile
35
- - rvm: 2.4.6
36
- gemfile: gemfiles/rails6.0.0.gemfile
37
- - rvm: 2.5.5
38
- gemfile: gemfiles/active4.2.11.1.gemfile
39
- - rvm: 2.5.5
40
- gemfile: gemfiles/rails4.2.11.1.gemfile
41
- - rvm: 2.6.2
42
- gemfile: gemfiles/active4.2.11.1.gemfile
43
- - rvm: 2.6.2
44
- gemfile: gemfiles/rails4.2.11.1.gemfile
26
+ - rvm: 2.4.10
27
+ gemfile: gemfiles/active6.0.3.1.gemfile
28
+ - rvm: 2.4.10
29
+ gemfile: gemfiles/active6.1.0.gemfile
30
+ - rvm: 2.4.10
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
45
38
  fast_finish: true
46
39
  before_install:
47
40
  - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
48
41
  - gem install bundler -v '< 2'
49
42
  script:
50
- - bundle exec rake rubocop
51
- - bundle exec rake spec
43
+ - bundle exec rubocop -P
44
+ - bundle exec rspec -f d spec
data/Appraisals CHANGED
@@ -1,11 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- ['4.2.11.1', '5.0.7.2', '5.1.7', '5.2.3'].each do |version_number|
3
+ [
4
+ '5.2.5'
5
+ ].each do |version_number|
4
6
  clean_number = version_number.gsub(/[<>~=]*/, '')
5
7
 
6
8
  appraise "rails#{clean_number}" do
7
9
  gem 'rails', version_number
8
10
  gem 'rspec-rails'
11
+ gem 'sprockets', '< 4'
12
+ gem 'sqlite3', '~> 1.3.11'
9
13
  gem 'test-unit'
10
14
  end
11
15
 
@@ -15,13 +19,34 @@
15
19
  end
16
20
  end
17
21
 
18
- appraise 'rails6.0.0' do
19
- gem 'rails', '6.0.0.beta3'
22
+ appraise 'rails6.0.3.6' do
23
+ gem 'rails', '6.0.3.6'
20
24
  gem 'rspec-rails'
21
25
  gem 'test-unit'
22
26
  end
23
27
 
24
- appraise 'active6.0.0' do
25
- gem 'activesupport', '6.0.0.beta3'
26
- gem 'activerecord', '6.0.0.beta3'
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'
27
52
  end
data/Gemfile CHANGED
@@ -5,4 +5,6 @@ source 'https://rubygems.org'
5
5
  gemspec
6
6
 
7
7
  gem 'coveralls', require: false
8
- gem 'rubocop', require: false
8
+ gem 'rubocop', '~> 0.67.2', require: false
9
+ gem 'rubocop-performance', require: false
10
+ gem 'sqlite3'
data/Gemfile.lock CHANGED
@@ -1,26 +1,27 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comma (4.3.1)
5
- activesupport (>= 4.2.0, < 6.1)
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.0.0.1)
11
- activesupport (= 5.0.0.1)
12
- activesupport (5.0.0.1)
10
+ activemodel (6.0.3.1)
11
+ activesupport (= 6.0.3.1)
12
+ activesupport (6.0.3.1)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (~> 0.7)
14
+ i18n (>= 0.7, < 2)
15
15
  minitest (~> 5.1)
16
16
  tzinfo (~> 1.1)
17
+ zeitwerk (~> 2.2, >= 2.2.2)
17
18
  appraisal (1.0.3)
18
19
  bundler
19
20
  rake
20
21
  thor (>= 0.14.0)
21
22
  ast (2.4.0)
22
23
  colorize (0.7.5)
23
- concurrent-ruby (1.0.2)
24
+ concurrent-ruby (1.1.6)
24
25
  coveralls (0.5.8)
25
26
  colorize
26
27
  json
@@ -29,23 +30,30 @@ GEM
29
30
  thor
30
31
  diff-lcs (1.2.5)
31
32
  docile (1.1.5)
32
- i18n (0.7.0)
33
+ domain_name (0.5.20190701)
34
+ unf (>= 0.0.5, < 1.0.0)
35
+ http-cookie (1.0.3)
36
+ domain_name (~> 0.5)
37
+ i18n (1.8.3)
38
+ concurrent-ruby (~> 1.0)
33
39
  jaro_winkler (1.5.2)
34
- json (1.8.6)
35
- mime-types (1.25.1)
36
- minitest (5.9.0)
40
+ json (2.3.1)
41
+ mime-types (3.2.2)
42
+ mime-types-data (~> 3.2015)
43
+ mime-types-data (3.2019.0331)
44
+ minitest (5.14.4)
37
45
  multi_json (1.1.0)
46
+ netrc (0.11.0)
38
47
  parallel (1.17.0)
39
48
  parser (2.6.2.1)
40
49
  ast (~> 2.4.0)
41
50
  psych (3.1.0)
42
51
  rainbow (3.0.0)
43
- rake (10.5.0)
44
- rdoc (4.2.0)
45
- json (~> 1.4)
46
- rest-client (1.6.8)
47
- mime-types (~> 1.16)
48
- rdoc (>= 2.4.2)
52
+ rake (13.0.1)
53
+ rest-client (2.0.2)
54
+ http-cookie (>= 1.0.2, < 2.0)
55
+ mime-types (>= 1.16, < 4.0)
56
+ netrc (~> 0.8)
49
57
  rspec (3.5.0)
50
58
  rspec-core (~> 3.5.0)
51
59
  rspec-expectations (~> 3.5.0)
@@ -74,6 +82,8 @@ GEM
74
82
  rainbow (>= 2.2.2, < 4.0)
75
83
  ruby-progressbar (~> 1.7)
76
84
  unicode-display_width (>= 1.4.0, < 1.6)
85
+ rubocop-performance (1.1.0)
86
+ rubocop (>= 0.67.0)
77
87
  ruby-progressbar (1.10.0)
78
88
  simplecov (0.9.2)
79
89
  docile (~> 1.1.0)
@@ -82,10 +92,14 @@ GEM
82
92
  simplecov-html (0.9.0)
83
93
  sqlite3 (1.3.11)
84
94
  thor (0.19.1)
85
- thread_safe (0.3.5)
86
- tzinfo (1.2.2)
95
+ thread_safe (0.3.6)
96
+ tzinfo (1.2.7)
87
97
  thread_safe (~> 0.1)
98
+ unf (0.1.4)
99
+ unf_ext
100
+ unf_ext (0.0.7.6)
88
101
  unicode-display_width (1.5.0)
102
+ zeitwerk (2.3.0)
89
103
 
90
104
  PLATFORMS
91
105
  ruby
@@ -94,12 +108,14 @@ DEPENDENCIES
94
108
  appraisal (~> 1.0.0)
95
109
  comma!
96
110
  coveralls
97
- rake (~> 10.5.0)
111
+ minitest (= 5.14.4)
112
+ rake (~> 13.0.1)
98
113
  rspec (~> 3.5.0)
99
114
  rspec-activemodel-mocks
100
115
  rspec-its
101
- rubocop
102
- sqlite3 (~> 1.3.11)
116
+ rubocop (~> 0.67.2)
117
+ rubocop-performance
118
+ sqlite3
103
119
 
104
120
  BUNDLED WITH
105
- 1.17.3
121
+ 2.1.4
data/README.md CHANGED
@@ -2,13 +2,13 @@
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
 
9
9
  ### Prerequisites
10
10
 
11
- You need to use ruby 2.3 or later. If you generate CSV from ActiveRecord models, you need to have ActiveRecord 4.2 or later.
11
+ You need to use ruby 2.4 or later. If you generate CSV from ActiveRecord models, you need to have ActiveRecord 5.0 or later.
12
12
 
13
13
  ### Installing
14
14
 
@@ -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.3.1'
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
@@ -12,20 +12,18 @@ Gem::Specification.new do |s|
12
12
  s.summary = %(Ruby Comma Seperated Values generation library)
13
13
  s.description = %(Ruby Comma Seperated Values generation library)
14
14
 
15
- s.rubyforge_project = 'comma'
16
-
17
15
  s.files = `git ls-files`.split("\n")
18
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
17
  s.require_paths = ['lib']
20
18
 
21
19
  s.licenses = ['MIT']
22
20
 
23
- s.add_dependency 'activesupport', ['>= 4.2.0', '< 6.1']
21
+ s.add_dependency 'activesupport', '>= 4.2.0'
24
22
 
25
23
  s.add_development_dependency 'appraisal', ['~> 1.0.0']
26
- s.add_development_dependency 'rake', ['~> 10.5.0']
24
+ s.add_development_dependency 'minitest', '5.14.4'
25
+ s.add_development_dependency 'rake', '~> 13.0.1'
27
26
  s.add_development_dependency 'rspec', ['~> 3.5.0']
28
27
  s.add_development_dependency 'rspec-activemodel-mocks'
29
28
  s.add_development_dependency 'rspec-its'
30
- s.add_development_dependency 'sqlite3', ['~> 1.3.11']
31
29
  end
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "coveralls", :require => false
6
+ gem "rubocop", "~> 0.67.2", :require => false
7
+ gem "rubocop-performance", :require => false
8
+ gem "sqlite3"
9
+ gem "activesupport", "5.2.5"
10
+ gem "activerecord", "5.2.5"
11
+
12
+ gemspec :path => "../"
@@ -1,19 +1,19 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- comma (4.3.1)
5
- activesupport (>= 4.2.0, < 6.1)
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.3)
11
- activesupport (= 5.2.3)
12
- activerecord (5.2.3)
13
- activemodel (= 5.2.3)
14
- activesupport (= 5.2.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.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.0)
27
- concurrent-ruby (1.1.5)
28
- coveralls (0.8.22)
26
+ ast (2.4.2)
27
+ concurrent-ruby (1.1.9)
28
+ coveralls (0.8.23)
29
29
  json (>= 1.8, < 3)
30
30
  simplecov (~> 0.16.1)
31
31
  term-ansicolor (~> 1.3)
32
- thor (~> 0.19.4)
32
+ thor (>= 0.19.4, < 2.0)
33
33
  tins (~> 1.6)
34
- diff-lcs (1.3)
35
- docile (1.3.1)
36
- i18n (1.6.0)
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.2)
39
- json (2.2.0)
40
- minitest (5.11.3)
41
- parallel (1.17.0)
42
- parser (2.6.2.1)
43
- ast (~> 2.4.0)
44
- psych (3.1.0)
38
+ jaro_winkler (1.5.4)
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 (10.5.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)
@@ -72,19 +72,23 @@ GEM
72
72
  rainbow (>= 2.2.2, < 4.0)
73
73
  ruby-progressbar (~> 1.7)
74
74
  unicode-display_width (>= 1.4.0, < 1.6)
75
- ruby-progressbar (1.10.0)
75
+ rubocop-performance (1.1.0)
76
+ rubocop (>= 0.67.0)
77
+ ruby-progressbar (1.11.0)
76
78
  simplecov (0.16.1)
77
79
  docile (~> 1.1)
78
80
  json (>= 1.8, < 3)
79
81
  simplecov-html (~> 0.10.0)
80
82
  simplecov-html (0.10.2)
81
- sqlite3 (1.3.13)
83
+ sqlite3 (1.4.2)
84
+ sync (0.5.0)
82
85
  term-ansicolor (1.7.1)
83
86
  tins (~> 1.0)
84
- thor (0.19.4)
87
+ thor (1.1.0)
85
88
  thread_safe (0.3.6)
86
- tins (1.20.2)
87
- tzinfo (1.2.5)
89
+ tins (1.29.1)
90
+ sync
91
+ tzinfo (1.2.9)
88
92
  thread_safe (~> 0.1)
89
93
  unicode-display_width (1.5.0)
90
94
 
@@ -92,17 +96,19 @@ PLATFORMS
92
96
  ruby
93
97
 
94
98
  DEPENDENCIES
95
- activerecord (= 5.2.3)
96
- activesupport (= 5.2.3)
99
+ activerecord (= 5.2.5)
100
+ activesupport (= 5.2.5)
97
101
  appraisal (~> 1.0.0)
98
102
  comma!
99
103
  coveralls
100
- rake (~> 10.5.0)
104
+ minitest (= 5.14.4)
105
+ rake (~> 13.0.1)
101
106
  rspec (~> 3.5.0)
102
107
  rspec-activemodel-mocks
103
108
  rspec-its
104
- rubocop
105
- sqlite3 (~> 1.3.11)
109
+ rubocop (~> 0.67.2)
110
+ rubocop-performance
111
+ sqlite3
106
112
 
107
113
  BUNDLED WITH
108
- 1.17.3
114
+ 2.1.4
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "coveralls", :require => false
6
+ gem "rubocop", "~> 0.67.2", :require => false
7
+ gem "rubocop-performance", :require => false
8
+ gem "sqlite3"
9
+ gem "activesupport", "6.0.3.6"
10
+ gem "activerecord", "6.0.3.6"
11
+
12
+ gemspec :path => "../"
@@ -1,49 +1,48 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- comma (4.3.1)
5
- activesupport (>= 4.2.0, < 6.1)
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.1.7)
11
- activesupport (= 5.1.7)
12
- activerecord (5.1.7)
13
- activemodel (= 5.1.7)
14
- activesupport (= 5.1.7)
15
- arel (~> 8.0)
16
- activesupport (5.1.7)
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)
17
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
17
  i18n (>= 0.7, < 2)
19
18
  minitest (~> 5.1)
20
19
  tzinfo (~> 1.1)
20
+ zeitwerk (~> 2.2, >= 2.2.2)
21
21
  appraisal (1.0.3)
22
22
  bundler
23
23
  rake
24
24
  thor (>= 0.14.0)
25
- arel (8.0.0)
26
- ast (2.4.0)
27
- concurrent-ruby (1.1.5)
28
- coveralls (0.8.22)
25
+ ast (2.4.2)
26
+ concurrent-ruby (1.1.9)
27
+ coveralls (0.8.23)
29
28
  json (>= 1.8, < 3)
30
29
  simplecov (~> 0.16.1)
31
30
  term-ansicolor (~> 1.3)
32
- thor (~> 0.19.4)
31
+ thor (>= 0.19.4, < 2.0)
33
32
  tins (~> 1.6)
34
- diff-lcs (1.3)
35
- docile (1.3.1)
36
- i18n (1.6.0)
33
+ diff-lcs (1.4.4)
34
+ docile (1.4.0)
35
+ i18n (1.8.11)
37
36
  concurrent-ruby (~> 1.0)
38
- jaro_winkler (1.5.2)
39
- json (2.2.0)
40
- minitest (5.11.3)
41
- parallel (1.17.0)
42
- parser (2.6.2.1)
43
- ast (~> 2.4.0)
44
- psych (3.1.0)
37
+ jaro_winkler (1.5.4)
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)
45
44
  rainbow (3.0.0)
46
- rake (10.5.0)
45
+ rake (13.0.6)
47
46
  rspec (3.5.0)
48
47
  rspec-core (~> 3.5.0)
49
48
  rspec-expectations (~> 3.5.0)
@@ -72,37 +71,44 @@ GEM
72
71
  rainbow (>= 2.2.2, < 4.0)
73
72
  ruby-progressbar (~> 1.7)
74
73
  unicode-display_width (>= 1.4.0, < 1.6)
75
- ruby-progressbar (1.10.0)
74
+ rubocop-performance (1.1.0)
75
+ rubocop (>= 0.67.0)
76
+ ruby-progressbar (1.11.0)
76
77
  simplecov (0.16.1)
77
78
  docile (~> 1.1)
78
79
  json (>= 1.8, < 3)
79
80
  simplecov-html (~> 0.10.0)
80
81
  simplecov-html (0.10.2)
81
- sqlite3 (1.3.13)
82
+ sqlite3 (1.4.2)
83
+ sync (0.5.0)
82
84
  term-ansicolor (1.7.1)
83
85
  tins (~> 1.0)
84
- thor (0.19.4)
86
+ thor (1.1.0)
85
87
  thread_safe (0.3.6)
86
- tins (1.20.2)
87
- tzinfo (1.2.5)
88
+ tins (1.29.1)
89
+ sync
90
+ tzinfo (1.2.9)
88
91
  thread_safe (~> 0.1)
89
92
  unicode-display_width (1.5.0)
93
+ zeitwerk (2.5.1)
90
94
 
91
95
  PLATFORMS
92
96
  ruby
93
97
 
94
98
  DEPENDENCIES
95
- activerecord (= 5.1.7)
96
- activesupport (= 5.1.7)
99
+ activerecord (= 6.0.3.6)
100
+ activesupport (= 6.0.3.6)
97
101
  appraisal (~> 1.0.0)
98
102
  comma!
99
103
  coveralls
100
- rake (~> 10.5.0)
104
+ minitest (= 5.14.4)
105
+ rake (~> 13.0.1)
101
106
  rspec (~> 3.5.0)
102
107
  rspec-activemodel-mocks
103
108
  rspec-its
104
- rubocop
105
- sqlite3 (~> 1.3.11)
109
+ rubocop (~> 0.67.2)
110
+ rubocop-performance
111
+ sqlite3
106
112
 
107
113
  BUNDLED WITH
108
- 1.17.3
114
+ 2.1.4