comma 4.3.1 → 4.6.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -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.1.3.1"
10
+ gem "activerecord", "6.1.3.1"
11
+
12
+ gemspec :path => "../"
@@ -1,51 +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 (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)
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
+ concurrent-ruby (~> 1.0, >= 1.0.2)
17
+ i18n (>= 1.6, < 2)
18
+ minitest (>= 5.1)
19
+ tzinfo (~> 2.0)
20
+ zeitwerk (~> 2.3)
22
21
  appraisal (1.0.3)
23
22
  bundler
24
23
  rake
25
24
  thor (>= 0.14.0)
26
- arel (6.0.4)
27
- ast (2.4.0)
28
- builder (3.2.3)
29
- concurrent-ruby (1.1.5)
30
- coveralls (0.8.22)
25
+ ast (2.4.2)
26
+ concurrent-ruby (1.1.9)
27
+ coveralls (0.8.23)
31
28
  json (>= 1.8, < 3)
32
29
  simplecov (~> 0.16.1)
33
30
  term-ansicolor (~> 1.3)
34
- thor (~> 0.19.4)
31
+ thor (>= 0.19.4, < 2.0)
35
32
  tins (~> 1.6)
36
- diff-lcs (1.3)
37
- docile (1.3.1)
38
- i18n (0.9.5)
33
+ diff-lcs (1.4.4)
34
+ docile (1.4.0)
35
+ i18n (1.8.11)
39
36
  concurrent-ruby (~> 1.0)
40
- jaro_winkler (1.5.2)
41
- json (2.2.0)
42
- minitest (5.11.3)
43
- parallel (1.17.0)
44
- parser (2.6.2.1)
45
- ast (~> 2.4.0)
46
- 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)
47
44
  rainbow (3.0.0)
48
- rake (10.5.0)
45
+ rake (13.0.6)
49
46
  rspec (3.5.0)
50
47
  rspec-core (~> 3.5.0)
51
48
  rspec-expectations (~> 3.5.0)
@@ -74,37 +71,43 @@ GEM
74
71
  rainbow (>= 2.2.2, < 4.0)
75
72
  ruby-progressbar (~> 1.7)
76
73
  unicode-display_width (>= 1.4.0, < 1.6)
77
- ruby-progressbar (1.10.0)
74
+ rubocop-performance (1.1.0)
75
+ rubocop (>= 0.67.0)
76
+ ruby-progressbar (1.11.0)
78
77
  simplecov (0.16.1)
79
78
  docile (~> 1.1)
80
79
  json (>= 1.8, < 3)
81
80
  simplecov-html (~> 0.10.0)
82
81
  simplecov-html (0.10.2)
83
- sqlite3 (1.3.13)
82
+ sqlite3 (1.4.2)
83
+ sync (0.5.0)
84
84
  term-ansicolor (1.7.1)
85
85
  tins (~> 1.0)
86
- thor (0.19.4)
87
- thread_safe (0.3.6)
88
- tins (1.20.2)
89
- tzinfo (1.2.5)
90
- thread_safe (~> 0.1)
86
+ thor (1.1.0)
87
+ tins (1.29.1)
88
+ sync
89
+ tzinfo (2.0.4)
90
+ concurrent-ruby (~> 1.0)
91
91
  unicode-display_width (1.5.0)
92
+ zeitwerk (2.5.1)
92
93
 
93
94
  PLATFORMS
94
95
  ruby
95
96
 
96
97
  DEPENDENCIES
97
- activerecord (= 4.2.11.1)
98
- activesupport (= 4.2.11.1)
98
+ activerecord (= 6.1.3.1)
99
+ activesupport (= 6.1.3.1)
99
100
  appraisal (~> 1.0.0)
100
101
  comma!
101
102
  coveralls
102
- rake (~> 10.5.0)
103
+ minitest (= 5.14.4)
104
+ rake (~> 13.0.1)
103
105
  rspec (~> 3.5.0)
104
106
  rspec-activemodel-mocks
105
107
  rspec-its
106
- rubocop
107
- sqlite3 (~> 1.3.11)
108
+ rubocop (~> 0.67.2)
109
+ rubocop-performance
110
+ sqlite3
108
111
 
109
112
  BUNDLED WITH
110
- 1.17.3
113
+ 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", "7.0.0"
10
+ gem "activerecord", "7.0.0"
11
+
12
+ gemspec :path => "../"
@@ -1,49 +1,47 @@
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.7.2)
11
- activesupport (= 5.0.7.2)
12
- activerecord (5.0.7.2)
13
- activemodel (= 5.0.7.2)
14
- activesupport (= 5.0.7.2)
15
- arel (~> 7.0)
16
- activesupport (5.0.7.2)
10
+ activemodel (7.0.0)
11
+ activesupport (= 7.0.0)
12
+ activerecord (7.0.0)
13
+ activemodel (= 7.0.0)
14
+ activesupport (= 7.0.0)
15
+ activesupport (7.0.0)
17
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (>= 0.7, < 2)
19
- minitest (~> 5.1)
20
- tzinfo (~> 1.1)
17
+ i18n (>= 1.6, < 2)
18
+ minitest (>= 5.1)
19
+ tzinfo (~> 2.0)
21
20
  appraisal (1.0.3)
22
21
  bundler
23
22
  rake
24
23
  thor (>= 0.14.0)
25
- arel (7.1.4)
26
- ast (2.4.0)
27
- concurrent-ruby (1.1.5)
28
- coveralls (0.8.22)
24
+ ast (2.4.2)
25
+ concurrent-ruby (1.1.9)
26
+ coveralls (0.8.23)
29
27
  json (>= 1.8, < 3)
30
28
  simplecov (~> 0.16.1)
31
29
  term-ansicolor (~> 1.3)
32
- thor (~> 0.19.4)
30
+ thor (>= 0.19.4, < 2.0)
33
31
  tins (~> 1.6)
34
- diff-lcs (1.3)
35
- docile (1.3.1)
36
- i18n (1.6.0)
32
+ diff-lcs (1.4.4)
33
+ docile (1.4.0)
34
+ i18n (1.8.11)
37
35
  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)
36
+ jaro_winkler (1.5.4)
37
+ json (2.6.1)
38
+ minitest (5.14.4)
39
+ parallel (1.21.0)
40
+ parser (3.0.3.2)
41
+ ast (~> 2.4.1)
42
+ psych (4.0.2)
45
43
  rainbow (3.0.0)
46
- rake (10.5.0)
44
+ rake (13.0.6)
47
45
  rspec (3.5.0)
48
46
  rspec-core (~> 3.5.0)
49
47
  rspec-expectations (~> 3.5.0)
@@ -72,37 +70,42 @@ GEM
72
70
  rainbow (>= 2.2.2, < 4.0)
73
71
  ruby-progressbar (~> 1.7)
74
72
  unicode-display_width (>= 1.4.0, < 1.6)
75
- ruby-progressbar (1.10.0)
73
+ rubocop-performance (1.1.0)
74
+ rubocop (>= 0.67.0)
75
+ ruby-progressbar (1.11.0)
76
76
  simplecov (0.16.1)
77
77
  docile (~> 1.1)
78
78
  json (>= 1.8, < 3)
79
79
  simplecov-html (~> 0.10.0)
80
80
  simplecov-html (0.10.2)
81
- sqlite3 (1.3.13)
81
+ sqlite3 (1.4.2)
82
+ sync (0.5.0)
82
83
  term-ansicolor (1.7.1)
83
84
  tins (~> 1.0)
84
- thor (0.19.4)
85
- thread_safe (0.3.6)
86
- tins (1.20.2)
87
- tzinfo (1.2.5)
88
- thread_safe (~> 0.1)
85
+ thor (1.1.0)
86
+ tins (1.29.1)
87
+ sync
88
+ tzinfo (2.0.4)
89
+ concurrent-ruby (~> 1.0)
89
90
  unicode-display_width (1.5.0)
90
91
 
91
92
  PLATFORMS
92
93
  ruby
93
94
 
94
95
  DEPENDENCIES
95
- activerecord (= 5.0.7.2)
96
- activesupport (= 5.0.7.2)
96
+ activerecord (= 7.0.0)
97
+ activesupport (= 7.0.0)
97
98
  appraisal (~> 1.0.0)
98
99
  comma!
99
100
  coveralls
100
- rake (~> 10.5.0)
101
+ minitest (= 5.14.4)
102
+ rake (~> 13.0.1)
101
103
  rspec (~> 3.5.0)
102
104
  rspec-activemodel-mocks
103
105
  rspec-its
104
- rubocop
105
- sqlite3 (~> 1.3.11)
106
+ rubocop (~> 0.67.2)
107
+ rubocop-performance
108
+ sqlite3
106
109
 
107
110
  BUNDLED WITH
108
- 1.17.3
111
+ 2.1.4
@@ -3,9 +3,12 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "coveralls", :require => false
6
- gem "rubocop", :require => false
7
- gem "rails", "5.2.3"
6
+ gem "rubocop", "~> 0.67.2", :require => false
7
+ gem "rubocop-performance", :require => false
8
+ gem "sqlite3", "~> 1.3.11"
9
+ gem "rails", "5.2.5"
8
10
  gem "rspec-rails"
11
+ gem "sprockets", "< 4"
9
12
  gem "test-unit"
10
13
 
11
14
  gemspec :path => "../"
@@ -1,49 +1,49 @@
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
- actioncable (5.2.3)
11
- actionpack (= 5.2.3)
10
+ actioncable (5.2.5)
11
+ actionpack (= 5.2.5)
12
12
  nio4r (~> 2.0)
13
13
  websocket-driver (>= 0.6.1)
14
- actionmailer (5.2.3)
15
- actionpack (= 5.2.3)
16
- actionview (= 5.2.3)
17
- activejob (= 5.2.3)
14
+ actionmailer (5.2.5)
15
+ actionpack (= 5.2.5)
16
+ actionview (= 5.2.5)
17
+ activejob (= 5.2.5)
18
18
  mail (~> 2.5, >= 2.5.4)
19
19
  rails-dom-testing (~> 2.0)
20
- actionpack (5.2.3)
21
- actionview (= 5.2.3)
22
- activesupport (= 5.2.3)
23
- rack (~> 2.0)
20
+ actionpack (5.2.5)
21
+ actionview (= 5.2.5)
22
+ activesupport (= 5.2.5)
23
+ rack (~> 2.0, >= 2.0.8)
24
24
  rack-test (>= 0.6.3)
25
25
  rails-dom-testing (~> 2.0)
26
26
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.2.3)
28
- activesupport (= 5.2.3)
27
+ actionview (5.2.5)
28
+ activesupport (= 5.2.5)
29
29
  builder (~> 3.1)
30
30
  erubi (~> 1.4)
31
31
  rails-dom-testing (~> 2.0)
32
32
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.2.3)
34
- activesupport (= 5.2.3)
33
+ activejob (5.2.5)
34
+ activesupport (= 5.2.5)
35
35
  globalid (>= 0.3.6)
36
- activemodel (5.2.3)
37
- activesupport (= 5.2.3)
38
- activerecord (5.2.3)
39
- activemodel (= 5.2.3)
40
- activesupport (= 5.2.3)
36
+ activemodel (5.2.5)
37
+ activesupport (= 5.2.5)
38
+ activerecord (5.2.5)
39
+ activemodel (= 5.2.5)
40
+ activesupport (= 5.2.5)
41
41
  arel (>= 9.0)
42
- activestorage (5.2.3)
43
- actionpack (= 5.2.3)
44
- activerecord (= 5.2.3)
45
- marcel (~> 0.3.1)
46
- activesupport (5.2.3)
42
+ activestorage (5.2.5)
43
+ actionpack (= 5.2.5)
44
+ activerecord (= 5.2.5)
45
+ marcel (~> 1.0.0)
46
+ activesupport (5.2.5)
47
47
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
48
  i18n (>= 0.7, < 2)
49
49
  minitest (~> 5.1)
@@ -53,74 +53,74 @@ GEM
53
53
  rake
54
54
  thor (>= 0.14.0)
55
55
  arel (9.0.0)
56
- ast (2.4.0)
57
- builder (3.2.3)
58
- concurrent-ruby (1.1.5)
59
- coveralls (0.8.22)
56
+ ast (2.4.2)
57
+ builder (3.2.4)
58
+ concurrent-ruby (1.1.9)
59
+ coveralls (0.8.23)
60
60
  json (>= 1.8, < 3)
61
61
  simplecov (~> 0.16.1)
62
62
  term-ansicolor (~> 1.3)
63
- thor (~> 0.19.4)
63
+ thor (>= 0.19.4, < 2.0)
64
64
  tins (~> 1.6)
65
- crass (1.0.4)
66
- diff-lcs (1.3)
67
- docile (1.3.1)
68
- erubi (1.8.0)
69
- globalid (0.4.2)
70
- activesupport (>= 4.2.0)
71
- i18n (1.6.0)
65
+ crass (1.0.6)
66
+ diff-lcs (1.4.4)
67
+ docile (1.4.0)
68
+ erubi (1.10.0)
69
+ globalid (0.5.2)
70
+ activesupport (>= 5.0)
71
+ i18n (1.8.11)
72
72
  concurrent-ruby (~> 1.0)
73
- jaro_winkler (1.5.2)
74
- json (2.2.0)
75
- loofah (2.2.3)
73
+ jaro_winkler (1.5.4)
74
+ json (2.6.1)
75
+ loofah (2.12.0)
76
76
  crass (~> 1.0.2)
77
77
  nokogiri (>= 1.5.9)
78
78
  mail (2.7.1)
79
79
  mini_mime (>= 0.1.1)
80
- marcel (0.3.3)
81
- mimemagic (~> 0.3.2)
82
- method_source (0.9.2)
83
- mimemagic (0.3.3)
84
- mini_mime (1.0.1)
85
- mini_portile2 (2.4.0)
86
- minitest (5.11.3)
87
- nio4r (2.3.1)
88
- nokogiri (1.10.2)
89
- mini_portile2 (~> 2.4.0)
90
- parallel (1.17.0)
91
- parser (2.6.2.1)
92
- ast (~> 2.4.0)
93
- power_assert (1.1.4)
94
- psych (3.1.0)
95
- rack (2.0.7)
80
+ marcel (1.0.2)
81
+ method_source (1.0.0)
82
+ mini_mime (1.1.2)
83
+ mini_portile2 (2.6.1)
84
+ minitest (5.14.4)
85
+ nio4r (2.5.8)
86
+ nokogiri (1.12.5)
87
+ mini_portile2 (~> 2.6.1)
88
+ racc (~> 1.4)
89
+ parallel (1.21.0)
90
+ parser (3.0.2.0)
91
+ ast (~> 2.4.1)
92
+ power_assert (2.0.1)
93
+ psych (3.3.0)
94
+ racc (1.6.0)
95
+ rack (2.2.3)
96
96
  rack-test (1.1.0)
97
97
  rack (>= 1.0, < 3)
98
- rails (5.2.3)
99
- actioncable (= 5.2.3)
100
- actionmailer (= 5.2.3)
101
- actionpack (= 5.2.3)
102
- actionview (= 5.2.3)
103
- activejob (= 5.2.3)
104
- activemodel (= 5.2.3)
105
- activerecord (= 5.2.3)
106
- activestorage (= 5.2.3)
107
- activesupport (= 5.2.3)
98
+ rails (5.2.5)
99
+ actioncable (= 5.2.5)
100
+ actionmailer (= 5.2.5)
101
+ actionpack (= 5.2.5)
102
+ actionview (= 5.2.5)
103
+ activejob (= 5.2.5)
104
+ activemodel (= 5.2.5)
105
+ activerecord (= 5.2.5)
106
+ activestorage (= 5.2.5)
107
+ activesupport (= 5.2.5)
108
108
  bundler (>= 1.3.0)
109
- railties (= 5.2.3)
109
+ railties (= 5.2.5)
110
110
  sprockets-rails (>= 2.0.0)
111
111
  rails-dom-testing (2.0.3)
112
112
  activesupport (>= 4.2.0)
113
113
  nokogiri (>= 1.6)
114
- rails-html-sanitizer (1.0.4)
115
- loofah (~> 2.2, >= 2.2.2)
116
- railties (5.2.3)
117
- actionpack (= 5.2.3)
118
- activesupport (= 5.2.3)
114
+ rails-html-sanitizer (1.4.2)
115
+ loofah (~> 2.3)
116
+ railties (5.2.5)
117
+ actionpack (= 5.2.5)
118
+ activesupport (= 5.2.5)
119
119
  method_source
120
120
  rake (>= 0.8.7)
121
121
  thor (>= 0.19.0, < 2.0)
122
122
  rainbow (3.0.0)
123
- rake (10.5.0)
123
+ rake (13.0.6)
124
124
  rspec (3.5.0)
125
125
  rspec-core (~> 3.5.0)
126
126
  rspec-expectations (~> 3.5.0)
@@ -157,7 +157,9 @@ GEM
157
157
  rainbow (>= 2.2.2, < 4.0)
158
158
  ruby-progressbar (~> 1.7)
159
159
  unicode-display_width (>= 1.4.0, < 1.6)
160
- ruby-progressbar (1.10.0)
160
+ rubocop-performance (1.1.0)
161
+ rubocop (>= 0.67.0)
162
+ ruby-progressbar (1.11.0)
161
163
  simplecov (0.16.1)
162
164
  docile (~> 1.1)
163
165
  json (>= 1.8, < 3)
@@ -166,24 +168,26 @@ GEM
166
168
  sprockets (3.7.2)
167
169
  concurrent-ruby (~> 1.0)
168
170
  rack (> 1, < 3)
169
- sprockets-rails (3.2.1)
171
+ sprockets-rails (3.2.2)
170
172
  actionpack (>= 4.0)
171
173
  activesupport (>= 4.0)
172
174
  sprockets (>= 3.0.0)
173
175
  sqlite3 (1.3.13)
176
+ sync (0.5.0)
174
177
  term-ansicolor (1.7.1)
175
178
  tins (~> 1.0)
176
- test-unit (3.3.2)
179
+ test-unit (3.5.1)
177
180
  power_assert
178
- thor (0.19.4)
181
+ thor (1.1.0)
179
182
  thread_safe (0.3.6)
180
- tins (1.20.2)
181
- tzinfo (1.2.5)
183
+ tins (1.29.1)
184
+ sync
185
+ tzinfo (1.2.9)
182
186
  thread_safe (~> 0.1)
183
187
  unicode-display_width (1.5.0)
184
- websocket-driver (0.7.0)
188
+ websocket-driver (0.7.5)
185
189
  websocket-extensions (>= 0.1.0)
186
- websocket-extensions (0.1.3)
190
+ websocket-extensions (0.1.5)
187
191
 
188
192
  PLATFORMS
189
193
  ruby
@@ -192,15 +196,18 @@ DEPENDENCIES
192
196
  appraisal (~> 1.0.0)
193
197
  comma!
194
198
  coveralls
195
- rails (= 5.2.3)
196
- rake (~> 10.5.0)
199
+ minitest (= 5.14.4)
200
+ rails (= 5.2.5)
201
+ rake (~> 13.0.1)
197
202
  rspec (~> 3.5.0)
198
203
  rspec-activemodel-mocks
199
204
  rspec-its
200
205
  rspec-rails
201
- rubocop
206
+ rubocop (~> 0.67.2)
207
+ rubocop-performance
208
+ sprockets (< 4)
202
209
  sqlite3 (~> 1.3.11)
203
210
  test-unit
204
211
 
205
212
  BUNDLED WITH
206
- 1.17.3
213
+ 2.1.4
@@ -3,8 +3,10 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "coveralls", :require => false
6
- gem "rubocop", :require => false
7
- gem "rails", "4.2.11.1"
6
+ gem "rubocop", "~> 0.67.2", :require => false
7
+ gem "rubocop-performance", :require => false
8
+ gem "sqlite3"
9
+ gem "rails", "6.0.3.6"
8
10
  gem "rspec-rails"
9
11
  gem "test-unit"
10
12