comma 4.2.0 → 4.5.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 (76) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +12 -1
  3. data/.rubocop_todo.yml +3 -364
  4. data/.travis.yml +26 -57
  5. data/Appraisals +31 -1
  6. data/Gemfile +5 -1
  7. data/Gemfile.lock +54 -36
  8. data/README.md +3 -3
  9. data/Rakefile +2 -0
  10. data/comma.gemspec +13 -14
  11. data/gemfiles/active5.0.7.2.gemfile +12 -0
  12. data/gemfiles/active5.0.7.2.gemfile.lock +113 -0
  13. data/gemfiles/active5.1.7.gemfile +12 -0
  14. data/gemfiles/active5.1.7.gemfile.lock +113 -0
  15. data/gemfiles/active5.2.4.3.gemfile +12 -0
  16. data/gemfiles/{active5.2.0.gemfile.lock → active5.2.4.3.gemfile.lock} +48 -41
  17. data/gemfiles/active6.0.3.1.gemfile +12 -0
  18. data/gemfiles/active6.0.3.1.gemfile.lock +113 -0
  19. data/gemfiles/active6.1.0.gemfile +12 -0
  20. data/gemfiles/active6.1.0.gemfile.lock +112 -0
  21. data/gemfiles/{rails5.0.1.gemfile → rails5.0.7.2.gemfile} +5 -2
  22. data/gemfiles/rails5.0.7.2.gemfile.lock +204 -0
  23. data/gemfiles/{rails4.2.8.gemfile → rails5.1.7.gemfile} +5 -2
  24. data/gemfiles/{rails5.2.0.gemfile.lock → rails5.1.7.gemfile.lock} +97 -97
  25. data/gemfiles/rails5.2.4.3.gemfile +14 -0
  26. data/gemfiles/rails5.2.4.3.gemfile.lock +212 -0
  27. data/gemfiles/{rails4.1.16.gemfile → rails6.0.3.1.gemfile} +4 -2
  28. data/gemfiles/rails6.0.3.1.gemfile.lock +227 -0
  29. data/gemfiles/{rails4.0.13.gemfile → rails6.1.0.gemfile} +4 -2
  30. data/gemfiles/rails6.1.0.gemfile.lock +230 -0
  31. data/init.rb +2 -0
  32. data/lib/comma.rb +26 -35
  33. data/lib/comma/array.rb +2 -0
  34. data/lib/comma/data_extractor.rb +5 -5
  35. data/lib/comma/data_mapper_collection.rb +9 -3
  36. data/lib/comma/extractor.rb +3 -5
  37. data/lib/comma/generator.rb +11 -11
  38. data/lib/comma/header_extractor.rb +19 -14
  39. data/lib/comma/mongoid.rb +10 -7
  40. data/lib/comma/object.rb +5 -1
  41. data/lib/comma/relation.rb +16 -10
  42. data/lib/comma/version.rb +3 -1
  43. data/spec/comma/comma_spec.rb +71 -50
  44. data/spec/comma/data_extractor_spec.rb +13 -17
  45. data/spec/comma/header_extractor_spec.rb +7 -13
  46. data/spec/comma/rails/active_record_spec.rb +34 -33
  47. data/spec/comma/rails/data_mapper_collection_spec.rb +4 -3
  48. data/spec/comma/rails/mongoid_spec.rb +8 -7
  49. data/spec/controllers/users_controller_spec.rb +83 -70
  50. data/spec/non_rails_app/ruby_classes.rb +13 -6
  51. data/spec/rails_app/active_record/config.rb +3 -1
  52. data/spec/rails_app/active_record/models.rb +4 -2
  53. data/spec/rails_app/data_mapper/config.rb +2 -0
  54. data/spec/rails_app/mongoid/config.rb +4 -2
  55. data/spec/rails_app/rails_app.rb +12 -11
  56. data/spec/rails_app/tmp/.gitkeep +0 -0
  57. data/spec/spec_helper.rb +21 -4
  58. metadata +31 -48
  59. data/gemfiles/active4.0.13.gemfile +0 -10
  60. data/gemfiles/active4.0.13.gemfile.lock +0 -107
  61. data/gemfiles/active4.1.16.gemfile +0 -10
  62. data/gemfiles/active4.1.16.gemfile.lock +0 -106
  63. data/gemfiles/active4.2.8.gemfile +0 -10
  64. data/gemfiles/active4.2.8.gemfile.lock +0 -105
  65. data/gemfiles/active5.0.1.gemfile +0 -10
  66. data/gemfiles/active5.0.1.gemfile.lock +0 -104
  67. data/gemfiles/active5.1.0.gemfile +0 -10
  68. data/gemfiles/active5.1.0.gemfile.lock +0 -104
  69. data/gemfiles/active5.2.0.gemfile +0 -10
  70. data/gemfiles/rails4.0.13.gemfile.lock +0 -158
  71. data/gemfiles/rails4.1.16.gemfile.lock +0 -162
  72. data/gemfiles/rails4.2.8.gemfile.lock +0 -187
  73. data/gemfiles/rails5.0.1.gemfile.lock +0 -194
  74. data/gemfiles/rails5.1.0.gemfile +0 -11
  75. data/gemfiles/rails5.1.0.gemfile.lock +0 -194
  76. data/gemfiles/rails5.2.0.gemfile +0 -11
@@ -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", "4.2.8"
6
+ gem "rubocop", "~> 0.67.2", :require => false
7
+ gem "rubocop-performance", :require => false
8
+ gem "sqlite3", "~> 1.3.11"
9
+ gem "rails", "5.1.7"
8
10
  gem "rspec-rails"
11
+ gem "sprockets", "< 4"
9
12
  gem "test-unit"
10
13
 
11
14
  gemspec :path => "../"
@@ -1,49 +1,45 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- comma (4.2.0)
5
- activesupport (>= 4.0.0, < 6)
4
+ comma (4.5.0)
5
+ activesupport (>= 4.2.0, < 6.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (5.2.0)
11
- actionpack (= 5.2.0)
10
+ actioncable (5.1.7)
11
+ actionpack (= 5.1.7)
12
12
  nio4r (~> 2.0)
13
- websocket-driver (>= 0.6.1)
14
- actionmailer (5.2.0)
15
- actionpack (= 5.2.0)
16
- actionview (= 5.2.0)
17
- activejob (= 5.2.0)
13
+ websocket-driver (~> 0.6.1)
14
+ actionmailer (5.1.7)
15
+ actionpack (= 5.1.7)
16
+ actionview (= 5.1.7)
17
+ activejob (= 5.1.7)
18
18
  mail (~> 2.5, >= 2.5.4)
19
19
  rails-dom-testing (~> 2.0)
20
- actionpack (5.2.0)
21
- actionview (= 5.2.0)
22
- activesupport (= 5.2.0)
20
+ actionpack (5.1.7)
21
+ actionview (= 5.1.7)
22
+ activesupport (= 5.1.7)
23
23
  rack (~> 2.0)
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.0)
28
- activesupport (= 5.2.0)
27
+ actionview (5.1.7)
28
+ activesupport (= 5.1.7)
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.0)
34
- activesupport (= 5.2.0)
33
+ activejob (5.1.7)
34
+ activesupport (= 5.1.7)
35
35
  globalid (>= 0.3.6)
36
- activemodel (5.2.0)
37
- activesupport (= 5.2.0)
38
- activerecord (5.2.0)
39
- activemodel (= 5.2.0)
40
- activesupport (= 5.2.0)
41
- arel (>= 9.0)
42
- activestorage (5.2.0)
43
- actionpack (= 5.2.0)
44
- activerecord (= 5.2.0)
45
- marcel (~> 0.3.1)
46
- activesupport (5.2.0)
36
+ activemodel (5.1.7)
37
+ activesupport (= 5.1.7)
38
+ activerecord (5.1.7)
39
+ activemodel (= 5.1.7)
40
+ activesupport (= 5.1.7)
41
+ arel (~> 8.0)
42
+ activesupport (5.1.7)
47
43
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
44
  i18n (>= 0.7, < 2)
49
45
  minitest (~> 5.1)
@@ -52,79 +48,76 @@ GEM
52
48
  bundler
53
49
  rake
54
50
  thor (>= 0.14.0)
55
- arel (9.0.0)
56
- ast (2.4.0)
57
- builder (3.2.3)
58
- concurrent-ruby (1.0.5)
59
- coveralls (0.8.21)
51
+ arel (8.0.0)
52
+ ast (2.4.1)
53
+ builder (3.2.4)
54
+ concurrent-ruby (1.1.6)
55
+ coveralls (0.8.23)
60
56
  json (>= 1.8, < 3)
61
- simplecov (~> 0.14.1)
57
+ simplecov (~> 0.16.1)
62
58
  term-ansicolor (~> 1.3)
63
- thor (~> 0.19.4)
59
+ thor (>= 0.19.4, < 2.0)
64
60
  tins (~> 1.6)
65
- crass (1.0.3)
61
+ crass (1.0.6)
66
62
  diff-lcs (1.3)
67
- docile (1.1.5)
68
- erubi (1.7.1)
69
- globalid (0.4.1)
63
+ docile (1.3.2)
64
+ erubi (1.9.0)
65
+ globalid (0.4.2)
70
66
  activesupport (>= 4.2.0)
71
- i18n (1.0.0)
67
+ i18n (1.8.3)
72
68
  concurrent-ruby (~> 1.0)
73
- json (2.1.0)
74
- loofah (2.2.2)
69
+ jaro_winkler (1.5.4)
70
+ json (2.3.0)
71
+ loofah (2.5.0)
75
72
  crass (~> 1.0.2)
76
73
  nokogiri (>= 1.5.9)
77
- mail (2.7.0)
74
+ mail (2.7.1)
78
75
  mini_mime (>= 0.1.1)
79
- marcel (0.3.2)
80
- mimemagic (~> 0.3.2)
81
- method_source (0.9.0)
82
- mimemagic (0.3.2)
83
- mini_mime (1.0.0)
84
- mini_portile2 (2.3.0)
85
- minitest (5.11.3)
86
- nio4r (2.3.0)
87
- nokogiri (1.8.2)
88
- mini_portile2 (~> 2.3.0)
89
- parallel (1.12.1)
90
- parser (2.5.0.5)
76
+ method_source (1.0.0)
77
+ mini_mime (1.0.2)
78
+ mini_portile2 (2.4.0)
79
+ minitest (5.14.1)
80
+ nio4r (2.5.2)
81
+ nokogiri (1.10.9)
82
+ mini_portile2 (~> 2.4.0)
83
+ parallel (1.19.1)
84
+ parser (2.7.1.3)
91
85
  ast (~> 2.4.0)
92
- power_assert (1.1.1)
93
- powerpack (0.1.1)
94
- rack (2.0.4)
95
- rack-test (1.0.0)
86
+ power_assert (1.2.0)
87
+ psych (3.1.0)
88
+ rack (2.2.3)
89
+ rack-test (1.1.0)
96
90
  rack (>= 1.0, < 3)
97
- rails (5.2.0)
98
- actioncable (= 5.2.0)
99
- actionmailer (= 5.2.0)
100
- actionpack (= 5.2.0)
101
- actionview (= 5.2.0)
102
- activejob (= 5.2.0)
103
- activemodel (= 5.2.0)
104
- activerecord (= 5.2.0)
105
- activestorage (= 5.2.0)
106
- activesupport (= 5.2.0)
91
+ rails (5.1.7)
92
+ actioncable (= 5.1.7)
93
+ actionmailer (= 5.1.7)
94
+ actionpack (= 5.1.7)
95
+ actionview (= 5.1.7)
96
+ activejob (= 5.1.7)
97
+ activemodel (= 5.1.7)
98
+ activerecord (= 5.1.7)
99
+ activesupport (= 5.1.7)
107
100
  bundler (>= 1.3.0)
108
- railties (= 5.2.0)
101
+ railties (= 5.1.7)
109
102
  sprockets-rails (>= 2.0.0)
110
103
  rails-dom-testing (2.0.3)
111
104
  activesupport (>= 4.2.0)
112
105
  nokogiri (>= 1.6)
113
- rails-html-sanitizer (1.0.4)
114
- loofah (~> 2.2, >= 2.2.2)
115
- railties (5.2.0)
116
- actionpack (= 5.2.0)
117
- activesupport (= 5.2.0)
106
+ rails-html-sanitizer (1.3.0)
107
+ loofah (~> 2.3)
108
+ railties (5.1.7)
109
+ actionpack (= 5.1.7)
110
+ activesupport (= 5.1.7)
118
111
  method_source
119
112
  rake (>= 0.8.7)
120
113
  thor (>= 0.18.1, < 2.0)
121
114
  rainbow (3.0.0)
122
- rake (10.5.0)
115
+ rake (13.0.1)
123
116
  rspec (3.5.0)
124
117
  rspec-core (~> 3.5.0)
125
118
  rspec-expectations (~> 3.5.0)
126
119
  rspec-mocks (~> 3.5.0)
127
- rspec-activemodel-mocks (1.0.3)
120
+ rspec-activemodel-mocks (1.1.0)
128
121
  activemodel (>= 3.0)
129
122
  activesupport (>= 3.0)
130
123
  rspec-mocks (>= 2.99, < 4.0)
@@ -133,7 +126,7 @@ GEM
133
126
  rspec-expectations (3.5.0)
134
127
  diff-lcs (>= 1.2.0, < 2.0)
135
128
  rspec-support (~> 3.5.0)
136
- rspec-its (1.2.0)
129
+ rspec-its (1.3.0)
137
130
  rspec-core (>= 3.0.0)
138
131
  rspec-expectations (>= 3.0.0)
139
132
  rspec-mocks (3.5.0)
@@ -148,20 +141,23 @@ GEM
148
141
  rspec-mocks (~> 3.5.0)
149
142
  rspec-support (~> 3.5.0)
150
143
  rspec-support (3.5.0)
151
- rubocop (0.54.0)
144
+ rubocop (0.67.2)
145
+ jaro_winkler (~> 1.5.1)
152
146
  parallel (~> 1.10)
153
- parser (>= 2.5)
154
- powerpack (~> 0.1)
147
+ parser (>= 2.5, != 2.5.1.1)
148
+ psych (>= 3.1.0)
155
149
  rainbow (>= 2.2.2, < 4.0)
156
150
  ruby-progressbar (~> 1.7)
157
- unicode-display_width (~> 1.0, >= 1.0.1)
158
- ruby-progressbar (1.9.0)
159
- simplecov (0.14.1)
160
- docile (~> 1.1.0)
151
+ unicode-display_width (>= 1.4.0, < 1.6)
152
+ rubocop-performance (1.1.0)
153
+ rubocop (>= 0.67.0)
154
+ ruby-progressbar (1.10.1)
155
+ simplecov (0.16.1)
156
+ docile (~> 1.1)
161
157
  json (>= 1.8, < 3)
162
158
  simplecov-html (~> 0.10.0)
163
159
  simplecov-html (0.10.2)
164
- sprockets (3.7.1)
160
+ sprockets (3.7.2)
165
161
  concurrent-ruby (~> 1.0)
166
162
  rack (> 1, < 3)
167
163
  sprockets-rails (3.2.1)
@@ -169,19 +165,21 @@ GEM
169
165
  activesupport (>= 4.0)
170
166
  sprockets (>= 3.0.0)
171
167
  sqlite3 (1.3.13)
172
- term-ansicolor (1.6.0)
168
+ sync (0.5.0)
169
+ term-ansicolor (1.7.1)
173
170
  tins (~> 1.0)
174
- test-unit (3.2.7)
171
+ test-unit (3.3.6)
175
172
  power_assert
176
- thor (0.19.4)
173
+ thor (1.0.1)
177
174
  thread_safe (0.3.6)
178
- tins (1.16.3)
179
- tzinfo (1.2.5)
175
+ tins (1.25.0)
176
+ sync
177
+ tzinfo (1.2.7)
180
178
  thread_safe (~> 0.1)
181
- unicode-display_width (1.3.0)
182
- websocket-driver (0.7.0)
179
+ unicode-display_width (1.5.0)
180
+ websocket-driver (0.6.5)
183
181
  websocket-extensions (>= 0.1.0)
184
- websocket-extensions (0.1.3)
182
+ websocket-extensions (0.1.5)
185
183
 
186
184
  PLATFORMS
187
185
  ruby
@@ -190,15 +188,17 @@ DEPENDENCIES
190
188
  appraisal (~> 1.0.0)
191
189
  comma!
192
190
  coveralls
193
- rails (= 5.2.0)
194
- rake (~> 10.5.0)
191
+ rails (= 5.1.7)
192
+ rake (~> 13.0.1)
195
193
  rspec (~> 3.5.0)
196
194
  rspec-activemodel-mocks
197
195
  rspec-its
198
196
  rspec-rails
199
- rubocop
197
+ rubocop (~> 0.67.2)
198
+ rubocop-performance
199
+ sprockets (< 4)
200
200
  sqlite3 (~> 1.3.11)
201
201
  test-unit
202
202
 
203
203
  BUNDLED WITH
204
- 1.16.1
204
+ 1.17.3
@@ -0,0 +1,14 @@
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", "~> 1.3.11"
9
+ gem "rails", "5.2.4.3"
10
+ gem "rspec-rails"
11
+ gem "sprockets", "< 4"
12
+ gem "test-unit"
13
+
14
+ gemspec :path => "../"
@@ -0,0 +1,212 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ comma (4.5.0)
5
+ activesupport (>= 4.2.0, < 6.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.2.4.3)
11
+ actionpack (= 5.2.4.3)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (>= 0.6.1)
14
+ actionmailer (5.2.4.3)
15
+ actionpack (= 5.2.4.3)
16
+ actionview (= 5.2.4.3)
17
+ activejob (= 5.2.4.3)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.2.4.3)
21
+ actionview (= 5.2.4.3)
22
+ activesupport (= 5.2.4.3)
23
+ rack (~> 2.0, >= 2.0.8)
24
+ rack-test (>= 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.2.4.3)
28
+ activesupport (= 5.2.4.3)
29
+ builder (~> 3.1)
30
+ erubi (~> 1.4)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
+ activejob (5.2.4.3)
34
+ activesupport (= 5.2.4.3)
35
+ globalid (>= 0.3.6)
36
+ activemodel (5.2.4.3)
37
+ activesupport (= 5.2.4.3)
38
+ activerecord (5.2.4.3)
39
+ activemodel (= 5.2.4.3)
40
+ activesupport (= 5.2.4.3)
41
+ arel (>= 9.0)
42
+ activestorage (5.2.4.3)
43
+ actionpack (= 5.2.4.3)
44
+ activerecord (= 5.2.4.3)
45
+ marcel (~> 0.3.1)
46
+ activesupport (5.2.4.3)
47
+ concurrent-ruby (~> 1.0, >= 1.0.2)
48
+ i18n (>= 0.7, < 2)
49
+ minitest (~> 5.1)
50
+ tzinfo (~> 1.1)
51
+ appraisal (1.0.3)
52
+ bundler
53
+ rake
54
+ thor (>= 0.14.0)
55
+ arel (9.0.0)
56
+ ast (2.4.1)
57
+ builder (3.2.4)
58
+ concurrent-ruby (1.1.6)
59
+ coveralls (0.8.23)
60
+ json (>= 1.8, < 3)
61
+ simplecov (~> 0.16.1)
62
+ term-ansicolor (~> 1.3)
63
+ thor (>= 0.19.4, < 2.0)
64
+ tins (~> 1.6)
65
+ crass (1.0.6)
66
+ diff-lcs (1.3)
67
+ docile (1.3.2)
68
+ erubi (1.9.0)
69
+ globalid (0.4.2)
70
+ activesupport (>= 4.2.0)
71
+ i18n (1.8.3)
72
+ concurrent-ruby (~> 1.0)
73
+ jaro_winkler (1.5.4)
74
+ json (2.3.0)
75
+ loofah (2.5.0)
76
+ crass (~> 1.0.2)
77
+ nokogiri (>= 1.5.9)
78
+ mail (2.7.1)
79
+ mini_mime (>= 0.1.1)
80
+ marcel (0.3.3)
81
+ mimemagic (~> 0.3.2)
82
+ method_source (1.0.0)
83
+ mimemagic (0.3.5)
84
+ mini_mime (1.0.2)
85
+ mini_portile2 (2.4.0)
86
+ minitest (5.14.1)
87
+ nio4r (2.5.2)
88
+ nokogiri (1.10.9)
89
+ mini_portile2 (~> 2.4.0)
90
+ parallel (1.19.1)
91
+ parser (2.7.1.3)
92
+ ast (~> 2.4.0)
93
+ power_assert (1.2.0)
94
+ psych (3.1.0)
95
+ rack (2.2.3)
96
+ rack-test (1.1.0)
97
+ rack (>= 1.0, < 3)
98
+ rails (5.2.4.3)
99
+ actioncable (= 5.2.4.3)
100
+ actionmailer (= 5.2.4.3)
101
+ actionpack (= 5.2.4.3)
102
+ actionview (= 5.2.4.3)
103
+ activejob (= 5.2.4.3)
104
+ activemodel (= 5.2.4.3)
105
+ activerecord (= 5.2.4.3)
106
+ activestorage (= 5.2.4.3)
107
+ activesupport (= 5.2.4.3)
108
+ bundler (>= 1.3.0)
109
+ railties (= 5.2.4.3)
110
+ sprockets-rails (>= 2.0.0)
111
+ rails-dom-testing (2.0.3)
112
+ activesupport (>= 4.2.0)
113
+ nokogiri (>= 1.6)
114
+ rails-html-sanitizer (1.3.0)
115
+ loofah (~> 2.3)
116
+ railties (5.2.4.3)
117
+ actionpack (= 5.2.4.3)
118
+ activesupport (= 5.2.4.3)
119
+ method_source
120
+ rake (>= 0.8.7)
121
+ thor (>= 0.19.0, < 2.0)
122
+ rainbow (3.0.0)
123
+ rake (13.0.1)
124
+ rspec (3.5.0)
125
+ rspec-core (~> 3.5.0)
126
+ rspec-expectations (~> 3.5.0)
127
+ rspec-mocks (~> 3.5.0)
128
+ rspec-activemodel-mocks (1.1.0)
129
+ activemodel (>= 3.0)
130
+ activesupport (>= 3.0)
131
+ rspec-mocks (>= 2.99, < 4.0)
132
+ rspec-core (3.5.4)
133
+ rspec-support (~> 3.5.0)
134
+ rspec-expectations (3.5.0)
135
+ diff-lcs (>= 1.2.0, < 2.0)
136
+ rspec-support (~> 3.5.0)
137
+ rspec-its (1.3.0)
138
+ rspec-core (>= 3.0.0)
139
+ rspec-expectations (>= 3.0.0)
140
+ rspec-mocks (3.5.0)
141
+ diff-lcs (>= 1.2.0, < 2.0)
142
+ rspec-support (~> 3.5.0)
143
+ rspec-rails (3.5.2)
144
+ actionpack (>= 3.0)
145
+ activesupport (>= 3.0)
146
+ railties (>= 3.0)
147
+ rspec-core (~> 3.5.0)
148
+ rspec-expectations (~> 3.5.0)
149
+ rspec-mocks (~> 3.5.0)
150
+ rspec-support (~> 3.5.0)
151
+ rspec-support (3.5.0)
152
+ rubocop (0.67.2)
153
+ jaro_winkler (~> 1.5.1)
154
+ parallel (~> 1.10)
155
+ parser (>= 2.5, != 2.5.1.1)
156
+ psych (>= 3.1.0)
157
+ rainbow (>= 2.2.2, < 4.0)
158
+ ruby-progressbar (~> 1.7)
159
+ unicode-display_width (>= 1.4.0, < 1.6)
160
+ rubocop-performance (1.1.0)
161
+ rubocop (>= 0.67.0)
162
+ ruby-progressbar (1.10.1)
163
+ simplecov (0.16.1)
164
+ docile (~> 1.1)
165
+ json (>= 1.8, < 3)
166
+ simplecov-html (~> 0.10.0)
167
+ simplecov-html (0.10.2)
168
+ sprockets (3.7.2)
169
+ concurrent-ruby (~> 1.0)
170
+ rack (> 1, < 3)
171
+ sprockets-rails (3.2.1)
172
+ actionpack (>= 4.0)
173
+ activesupport (>= 4.0)
174
+ sprockets (>= 3.0.0)
175
+ sqlite3 (1.3.13)
176
+ sync (0.5.0)
177
+ term-ansicolor (1.7.1)
178
+ tins (~> 1.0)
179
+ test-unit (3.3.6)
180
+ power_assert
181
+ thor (1.0.1)
182
+ thread_safe (0.3.6)
183
+ tins (1.25.0)
184
+ sync
185
+ tzinfo (1.2.7)
186
+ thread_safe (~> 0.1)
187
+ unicode-display_width (1.5.0)
188
+ websocket-driver (0.7.2)
189
+ websocket-extensions (>= 0.1.0)
190
+ websocket-extensions (0.1.5)
191
+
192
+ PLATFORMS
193
+ ruby
194
+
195
+ DEPENDENCIES
196
+ appraisal (~> 1.0.0)
197
+ comma!
198
+ coveralls
199
+ rails (= 5.2.4.3)
200
+ rake (~> 13.0.1)
201
+ rspec (~> 3.5.0)
202
+ rspec-activemodel-mocks
203
+ rspec-its
204
+ rspec-rails
205
+ rubocop (~> 0.67.2)
206
+ rubocop-performance
207
+ sprockets (< 4)
208
+ sqlite3 (~> 1.3.11)
209
+ test-unit
210
+
211
+ BUNDLED WITH
212
+ 1.17.3