comma 4.2.0 → 4.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +10 -1
  3. data/.rubocop_todo.yml +3 -364
  4. data/.travis.yml +36 -55
  5. data/Appraisals +14 -1
  6. data/Gemfile +2 -0
  7. data/Gemfile.lock +19 -16
  8. data/README.md +2 -2
  9. data/Rakefile +2 -0
  10. data/comma.gemspec +13 -11
  11. data/gemfiles/{active4.1.16.gemfile → active4.2.11.1.gemfile} +2 -2
  12. data/gemfiles/{active4.2.8.gemfile.lock → active4.2.11.1.gemfile.lock} +43 -38
  13. data/gemfiles/{active4.0.13.gemfile → active5.0.7.2.gemfile} +2 -2
  14. data/gemfiles/{active5.0.1.gemfile.lock → active5.0.7.2.gemfile.lock} +44 -40
  15. data/gemfiles/{active5.1.0.gemfile → active5.1.7.gemfile} +2 -2
  16. data/gemfiles/{active5.1.0.gemfile.lock → active5.1.7.gemfile.lock} +44 -40
  17. data/gemfiles/{active4.2.8.gemfile → active5.2.3.gemfile} +2 -2
  18. data/gemfiles/active5.2.3.gemfile.lock +108 -0
  19. data/gemfiles/{active5.0.1.gemfile → active6.0.0.gemfile} +2 -2
  20. data/gemfiles/{active5.2.0.gemfile.lock → active6.0.0.gemfile.lock} +31 -29
  21. data/gemfiles/{rails4.1.16.gemfile → rails4.2.11.1.gemfile} +1 -1
  22. data/gemfiles/{rails4.2.8.gemfile.lock → rails4.2.11.1.gemfile.lock} +84 -80
  23. data/gemfiles/{rails4.0.13.gemfile → rails5.0.7.2.gemfile} +1 -1
  24. data/gemfiles/rails5.0.7.2.gemfile.lock +198 -0
  25. data/gemfiles/{rails5.1.0.gemfile → rails5.1.7.gemfile} +1 -1
  26. data/gemfiles/rails5.1.7.gemfile.lock +198 -0
  27. data/gemfiles/{rails5.2.0.gemfile → rails5.2.3.gemfile} +1 -1
  28. data/gemfiles/{rails5.2.0.gemfile.lock → rails5.2.3.gemfile.lock} +82 -80
  29. data/gemfiles/{rails4.2.8.gemfile → rails6.0.0.gemfile} +1 -1
  30. data/gemfiles/rails6.0.0.gemfile.lock +237 -0
  31. data/init.rb +2 -0
  32. data/lib/comma.rb +23 -33
  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 +18 -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 +68 -47
  44. data/spec/comma/data_extractor_spec.rb +6 -10
  45. data/spec/comma/header_extractor_spec.rb +2 -8
  46. data/spec/comma/rails/active_record_spec.rb +28 -26
  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 +48 -47
  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 +7 -3
  58. metadata +27 -30
  59. data/gemfiles/active4.0.13.gemfile.lock +0 -107
  60. data/gemfiles/active4.1.16.gemfile.lock +0 -106
  61. data/gemfiles/active5.2.0.gemfile +0 -10
  62. data/gemfiles/rails4.0.13.gemfile.lock +0 -158
  63. data/gemfiles/rails4.1.16.gemfile.lock +0 -162
  64. data/gemfiles/rails5.0.1.gemfile +0 -11
  65. data/gemfiles/rails5.0.1.gemfile.lock +0 -194
  66. data/gemfiles/rails5.1.0.gemfile.lock +0 -194
@@ -4,7 +4,7 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "coveralls", :require => false
6
6
  gem "rubocop", :require => false
7
- gem "rails", "4.0.13"
7
+ gem "rails", "5.0.7.2"
8
8
  gem "rspec-rails"
9
9
  gem "test-unit"
10
10
 
@@ -0,0 +1,198 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ comma (4.3.0)
5
+ activesupport (>= 4.0.0, < 6.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.0.7.2)
11
+ actionpack (= 5.0.7.2)
12
+ nio4r (>= 1.2, < 3.0)
13
+ websocket-driver (~> 0.6.1)
14
+ actionmailer (5.0.7.2)
15
+ actionpack (= 5.0.7.2)
16
+ actionview (= 5.0.7.2)
17
+ activejob (= 5.0.7.2)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.0.7.2)
21
+ actionview (= 5.0.7.2)
22
+ activesupport (= 5.0.7.2)
23
+ rack (~> 2.0)
24
+ rack-test (~> 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.0.7.2)
28
+ activesupport (= 5.0.7.2)
29
+ builder (~> 3.1)
30
+ erubis (~> 2.7.0)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
+ activejob (5.0.7.2)
34
+ activesupport (= 5.0.7.2)
35
+ globalid (>= 0.3.6)
36
+ activemodel (5.0.7.2)
37
+ activesupport (= 5.0.7.2)
38
+ activerecord (5.0.7.2)
39
+ activemodel (= 5.0.7.2)
40
+ activesupport (= 5.0.7.2)
41
+ arel (~> 7.0)
42
+ activesupport (5.0.7.2)
43
+ concurrent-ruby (~> 1.0, >= 1.0.2)
44
+ i18n (>= 0.7, < 2)
45
+ minitest (~> 5.1)
46
+ tzinfo (~> 1.1)
47
+ appraisal (1.0.3)
48
+ bundler
49
+ rake
50
+ thor (>= 0.14.0)
51
+ arel (7.1.4)
52
+ ast (2.4.0)
53
+ builder (3.2.3)
54
+ concurrent-ruby (1.1.5)
55
+ coveralls (0.8.22)
56
+ json (>= 1.8, < 3)
57
+ simplecov (~> 0.16.1)
58
+ term-ansicolor (~> 1.3)
59
+ thor (~> 0.19.4)
60
+ tins (~> 1.6)
61
+ crass (1.0.4)
62
+ diff-lcs (1.3)
63
+ docile (1.3.1)
64
+ erubis (2.7.0)
65
+ globalid (0.4.2)
66
+ activesupport (>= 4.2.0)
67
+ i18n (1.6.0)
68
+ concurrent-ruby (~> 1.0)
69
+ jaro_winkler (1.5.2)
70
+ json (2.2.0)
71
+ loofah (2.2.3)
72
+ crass (~> 1.0.2)
73
+ nokogiri (>= 1.5.9)
74
+ mail (2.7.1)
75
+ mini_mime (>= 0.1.1)
76
+ method_source (0.9.2)
77
+ mini_mime (1.0.1)
78
+ mini_portile2 (2.4.0)
79
+ minitest (5.11.3)
80
+ nio4r (2.3.1)
81
+ nokogiri (1.10.2)
82
+ mini_portile2 (~> 2.4.0)
83
+ parallel (1.17.0)
84
+ parser (2.6.2.1)
85
+ ast (~> 2.4.0)
86
+ power_assert (1.1.4)
87
+ psych (3.1.0)
88
+ rack (2.0.7)
89
+ rack-test (0.6.3)
90
+ rack (>= 1.0)
91
+ rails (5.0.7.2)
92
+ actioncable (= 5.0.7.2)
93
+ actionmailer (= 5.0.7.2)
94
+ actionpack (= 5.0.7.2)
95
+ actionview (= 5.0.7.2)
96
+ activejob (= 5.0.7.2)
97
+ activemodel (= 5.0.7.2)
98
+ activerecord (= 5.0.7.2)
99
+ activesupport (= 5.0.7.2)
100
+ bundler (>= 1.3.0)
101
+ railties (= 5.0.7.2)
102
+ sprockets-rails (>= 2.0.0)
103
+ rails-dom-testing (2.0.3)
104
+ activesupport (>= 4.2.0)
105
+ nokogiri (>= 1.6)
106
+ rails-html-sanitizer (1.0.4)
107
+ loofah (~> 2.2, >= 2.2.2)
108
+ railties (5.0.7.2)
109
+ actionpack (= 5.0.7.2)
110
+ activesupport (= 5.0.7.2)
111
+ method_source
112
+ rake (>= 0.8.7)
113
+ thor (>= 0.18.1, < 2.0)
114
+ rainbow (3.0.0)
115
+ rake (10.5.0)
116
+ rspec (3.5.0)
117
+ rspec-core (~> 3.5.0)
118
+ rspec-expectations (~> 3.5.0)
119
+ rspec-mocks (~> 3.5.0)
120
+ rspec-activemodel-mocks (1.1.0)
121
+ activemodel (>= 3.0)
122
+ activesupport (>= 3.0)
123
+ rspec-mocks (>= 2.99, < 4.0)
124
+ rspec-core (3.5.4)
125
+ rspec-support (~> 3.5.0)
126
+ rspec-expectations (3.5.0)
127
+ diff-lcs (>= 1.2.0, < 2.0)
128
+ rspec-support (~> 3.5.0)
129
+ rspec-its (1.3.0)
130
+ rspec-core (>= 3.0.0)
131
+ rspec-expectations (>= 3.0.0)
132
+ rspec-mocks (3.5.0)
133
+ diff-lcs (>= 1.2.0, < 2.0)
134
+ rspec-support (~> 3.5.0)
135
+ rspec-rails (3.5.2)
136
+ actionpack (>= 3.0)
137
+ activesupport (>= 3.0)
138
+ railties (>= 3.0)
139
+ rspec-core (~> 3.5.0)
140
+ rspec-expectations (~> 3.5.0)
141
+ rspec-mocks (~> 3.5.0)
142
+ rspec-support (~> 3.5.0)
143
+ rspec-support (3.5.0)
144
+ rubocop (0.67.2)
145
+ jaro_winkler (~> 1.5.1)
146
+ parallel (~> 1.10)
147
+ parser (>= 2.5, != 2.5.1.1)
148
+ psych (>= 3.1.0)
149
+ rainbow (>= 2.2.2, < 4.0)
150
+ ruby-progressbar (~> 1.7)
151
+ unicode-display_width (>= 1.4.0, < 1.6)
152
+ ruby-progressbar (1.10.0)
153
+ simplecov (0.16.1)
154
+ docile (~> 1.1)
155
+ json (>= 1.8, < 3)
156
+ simplecov-html (~> 0.10.0)
157
+ simplecov-html (0.10.2)
158
+ sprockets (3.7.2)
159
+ concurrent-ruby (~> 1.0)
160
+ rack (> 1, < 3)
161
+ sprockets-rails (3.2.1)
162
+ actionpack (>= 4.0)
163
+ activesupport (>= 4.0)
164
+ sprockets (>= 3.0.0)
165
+ sqlite3 (1.3.13)
166
+ term-ansicolor (1.7.1)
167
+ tins (~> 1.0)
168
+ test-unit (3.3.2)
169
+ power_assert
170
+ thor (0.19.4)
171
+ thread_safe (0.3.6)
172
+ tins (1.20.2)
173
+ tzinfo (1.2.5)
174
+ thread_safe (~> 0.1)
175
+ unicode-display_width (1.5.0)
176
+ websocket-driver (0.6.5)
177
+ websocket-extensions (>= 0.1.0)
178
+ websocket-extensions (0.1.3)
179
+
180
+ PLATFORMS
181
+ ruby
182
+
183
+ DEPENDENCIES
184
+ appraisal (~> 1.0.0)
185
+ comma!
186
+ coveralls
187
+ rails (= 5.0.7.2)
188
+ rake (~> 10.5.0)
189
+ rspec (~> 3.5.0)
190
+ rspec-activemodel-mocks
191
+ rspec-its
192
+ rspec-rails
193
+ rubocop
194
+ sqlite3 (~> 1.3.11)
195
+ test-unit
196
+
197
+ BUNDLED WITH
198
+ 1.17.3
@@ -4,7 +4,7 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "coveralls", :require => false
6
6
  gem "rubocop", :require => false
7
- gem "rails", "5.1.0"
7
+ gem "rails", "5.1.7"
8
8
  gem "rspec-rails"
9
9
  gem "test-unit"
10
10
 
@@ -0,0 +1,198 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ comma (4.3.0)
5
+ activesupport (>= 4.0.0, < 6.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.1.7)
11
+ actionpack (= 5.1.7)
12
+ nio4r (~> 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
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.1.7)
21
+ actionview (= 5.1.7)
22
+ activesupport (= 5.1.7)
23
+ rack (~> 2.0)
24
+ rack-test (>= 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.1.7)
28
+ activesupport (= 5.1.7)
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.1.7)
34
+ activesupport (= 5.1.7)
35
+ globalid (>= 0.3.6)
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)
43
+ concurrent-ruby (~> 1.0, >= 1.0.2)
44
+ i18n (>= 0.7, < 2)
45
+ minitest (~> 5.1)
46
+ tzinfo (~> 1.1)
47
+ appraisal (1.0.3)
48
+ bundler
49
+ rake
50
+ thor (>= 0.14.0)
51
+ arel (8.0.0)
52
+ ast (2.4.0)
53
+ builder (3.2.3)
54
+ concurrent-ruby (1.1.5)
55
+ coveralls (0.8.22)
56
+ json (>= 1.8, < 3)
57
+ simplecov (~> 0.16.1)
58
+ term-ansicolor (~> 1.3)
59
+ thor (~> 0.19.4)
60
+ tins (~> 1.6)
61
+ crass (1.0.4)
62
+ diff-lcs (1.3)
63
+ docile (1.3.1)
64
+ erubi (1.8.0)
65
+ globalid (0.4.2)
66
+ activesupport (>= 4.2.0)
67
+ i18n (1.6.0)
68
+ concurrent-ruby (~> 1.0)
69
+ jaro_winkler (1.5.2)
70
+ json (2.2.0)
71
+ loofah (2.2.3)
72
+ crass (~> 1.0.2)
73
+ nokogiri (>= 1.5.9)
74
+ mail (2.7.1)
75
+ mini_mime (>= 0.1.1)
76
+ method_source (0.9.2)
77
+ mini_mime (1.0.1)
78
+ mini_portile2 (2.4.0)
79
+ minitest (5.11.3)
80
+ nio4r (2.3.1)
81
+ nokogiri (1.10.2)
82
+ mini_portile2 (~> 2.4.0)
83
+ parallel (1.17.0)
84
+ parser (2.6.2.1)
85
+ ast (~> 2.4.0)
86
+ power_assert (1.1.4)
87
+ psych (3.1.0)
88
+ rack (2.0.7)
89
+ rack-test (1.1.0)
90
+ rack (>= 1.0, < 3)
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)
100
+ bundler (>= 1.3.0)
101
+ railties (= 5.1.7)
102
+ sprockets-rails (>= 2.0.0)
103
+ rails-dom-testing (2.0.3)
104
+ activesupport (>= 4.2.0)
105
+ nokogiri (>= 1.6)
106
+ rails-html-sanitizer (1.0.4)
107
+ loofah (~> 2.2, >= 2.2.2)
108
+ railties (5.1.7)
109
+ actionpack (= 5.1.7)
110
+ activesupport (= 5.1.7)
111
+ method_source
112
+ rake (>= 0.8.7)
113
+ thor (>= 0.18.1, < 2.0)
114
+ rainbow (3.0.0)
115
+ rake (10.5.0)
116
+ rspec (3.5.0)
117
+ rspec-core (~> 3.5.0)
118
+ rspec-expectations (~> 3.5.0)
119
+ rspec-mocks (~> 3.5.0)
120
+ rspec-activemodel-mocks (1.1.0)
121
+ activemodel (>= 3.0)
122
+ activesupport (>= 3.0)
123
+ rspec-mocks (>= 2.99, < 4.0)
124
+ rspec-core (3.5.4)
125
+ rspec-support (~> 3.5.0)
126
+ rspec-expectations (3.5.0)
127
+ diff-lcs (>= 1.2.0, < 2.0)
128
+ rspec-support (~> 3.5.0)
129
+ rspec-its (1.3.0)
130
+ rspec-core (>= 3.0.0)
131
+ rspec-expectations (>= 3.0.0)
132
+ rspec-mocks (3.5.0)
133
+ diff-lcs (>= 1.2.0, < 2.0)
134
+ rspec-support (~> 3.5.0)
135
+ rspec-rails (3.5.2)
136
+ actionpack (>= 3.0)
137
+ activesupport (>= 3.0)
138
+ railties (>= 3.0)
139
+ rspec-core (~> 3.5.0)
140
+ rspec-expectations (~> 3.5.0)
141
+ rspec-mocks (~> 3.5.0)
142
+ rspec-support (~> 3.5.0)
143
+ rspec-support (3.5.0)
144
+ rubocop (0.67.2)
145
+ jaro_winkler (~> 1.5.1)
146
+ parallel (~> 1.10)
147
+ parser (>= 2.5, != 2.5.1.1)
148
+ psych (>= 3.1.0)
149
+ rainbow (>= 2.2.2, < 4.0)
150
+ ruby-progressbar (~> 1.7)
151
+ unicode-display_width (>= 1.4.0, < 1.6)
152
+ ruby-progressbar (1.10.0)
153
+ simplecov (0.16.1)
154
+ docile (~> 1.1)
155
+ json (>= 1.8, < 3)
156
+ simplecov-html (~> 0.10.0)
157
+ simplecov-html (0.10.2)
158
+ sprockets (3.7.2)
159
+ concurrent-ruby (~> 1.0)
160
+ rack (> 1, < 3)
161
+ sprockets-rails (3.2.1)
162
+ actionpack (>= 4.0)
163
+ activesupport (>= 4.0)
164
+ sprockets (>= 3.0.0)
165
+ sqlite3 (1.3.13)
166
+ term-ansicolor (1.7.1)
167
+ tins (~> 1.0)
168
+ test-unit (3.3.2)
169
+ power_assert
170
+ thor (0.19.4)
171
+ thread_safe (0.3.6)
172
+ tins (1.20.2)
173
+ tzinfo (1.2.5)
174
+ thread_safe (~> 0.1)
175
+ unicode-display_width (1.5.0)
176
+ websocket-driver (0.6.5)
177
+ websocket-extensions (>= 0.1.0)
178
+ websocket-extensions (0.1.3)
179
+
180
+ PLATFORMS
181
+ ruby
182
+
183
+ DEPENDENCIES
184
+ appraisal (~> 1.0.0)
185
+ comma!
186
+ coveralls
187
+ rails (= 5.1.7)
188
+ rake (~> 10.5.0)
189
+ rspec (~> 3.5.0)
190
+ rspec-activemodel-mocks
191
+ rspec-its
192
+ rspec-rails
193
+ rubocop
194
+ sqlite3 (~> 1.3.11)
195
+ test-unit
196
+
197
+ BUNDLED WITH
198
+ 1.17.3
@@ -4,7 +4,7 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "coveralls", :require => false
6
6
  gem "rubocop", :require => false
7
- gem "rails", "5.2.0"
7
+ gem "rails", "5.2.3"
8
8
  gem "rspec-rails"
9
9
  gem "test-unit"
10
10
 
@@ -1,49 +1,49 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- comma (4.2.0)
5
- activesupport (>= 4.0.0, < 6)
4
+ comma (4.3.0)
5
+ activesupport (>= 4.0.0, < 6.1)
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.2.3)
11
+ actionpack (= 5.2.3)
12
12
  nio4r (~> 2.0)
13
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)
14
+ actionmailer (5.2.3)
15
+ actionpack (= 5.2.3)
16
+ actionview (= 5.2.3)
17
+ activejob (= 5.2.3)
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.2.3)
21
+ actionview (= 5.2.3)
22
+ activesupport (= 5.2.3)
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.2.3)
28
+ activesupport (= 5.2.3)
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.2.3)
34
+ activesupport (= 5.2.3)
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)
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)
41
41
  arel (>= 9.0)
42
- activestorage (5.2.0)
43
- actionpack (= 5.2.0)
44
- activerecord (= 5.2.0)
42
+ activestorage (5.2.3)
43
+ actionpack (= 5.2.3)
44
+ activerecord (= 5.2.3)
45
45
  marcel (~> 0.3.1)
46
- activesupport (5.2.0)
46
+ activesupport (5.2.3)
47
47
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
48
  i18n (>= 0.7, < 2)
49
49
  minitest (~> 5.1)
@@ -55,76 +55,77 @@ GEM
55
55
  arel (9.0.0)
56
56
  ast (2.4.0)
57
57
  builder (3.2.3)
58
- concurrent-ruby (1.0.5)
59
- coveralls (0.8.21)
58
+ concurrent-ruby (1.1.5)
59
+ coveralls (0.8.22)
60
60
  json (>= 1.8, < 3)
61
- simplecov (~> 0.14.1)
61
+ simplecov (~> 0.16.1)
62
62
  term-ansicolor (~> 1.3)
63
63
  thor (~> 0.19.4)
64
64
  tins (~> 1.6)
65
- crass (1.0.3)
65
+ crass (1.0.4)
66
66
  diff-lcs (1.3)
67
- docile (1.1.5)
68
- erubi (1.7.1)
69
- globalid (0.4.1)
67
+ docile (1.3.1)
68
+ erubi (1.8.0)
69
+ globalid (0.4.2)
70
70
  activesupport (>= 4.2.0)
71
- i18n (1.0.0)
71
+ i18n (1.6.0)
72
72
  concurrent-ruby (~> 1.0)
73
- json (2.1.0)
74
- loofah (2.2.2)
73
+ jaro_winkler (1.5.2)
74
+ json (2.2.0)
75
+ loofah (2.2.3)
75
76
  crass (~> 1.0.2)
76
77
  nokogiri (>= 1.5.9)
77
- mail (2.7.0)
78
+ mail (2.7.1)
78
79
  mini_mime (>= 0.1.1)
79
- marcel (0.3.2)
80
+ marcel (0.3.3)
80
81
  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)
82
+ method_source (0.9.2)
83
+ mimemagic (0.3.3)
84
+ mini_mime (1.0.1)
85
+ mini_portile2 (2.4.0)
85
86
  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)
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)
91
92
  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)
93
+ power_assert (1.1.4)
94
+ psych (3.1.0)
95
+ rack (2.0.7)
96
+ rack-test (1.1.0)
96
97
  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)
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)
107
108
  bundler (>= 1.3.0)
108
- railties (= 5.2.0)
109
+ railties (= 5.2.3)
109
110
  sprockets-rails (>= 2.0.0)
110
111
  rails-dom-testing (2.0.3)
111
112
  activesupport (>= 4.2.0)
112
113
  nokogiri (>= 1.6)
113
114
  rails-html-sanitizer (1.0.4)
114
115
  loofah (~> 2.2, >= 2.2.2)
115
- railties (5.2.0)
116
- actionpack (= 5.2.0)
117
- activesupport (= 5.2.0)
116
+ railties (5.2.3)
117
+ actionpack (= 5.2.3)
118
+ activesupport (= 5.2.3)
118
119
  method_source
119
120
  rake (>= 0.8.7)
120
- thor (>= 0.18.1, < 2.0)
121
+ thor (>= 0.19.0, < 2.0)
121
122
  rainbow (3.0.0)
122
123
  rake (10.5.0)
123
124
  rspec (3.5.0)
124
125
  rspec-core (~> 3.5.0)
125
126
  rspec-expectations (~> 3.5.0)
126
127
  rspec-mocks (~> 3.5.0)
127
- rspec-activemodel-mocks (1.0.3)
128
+ rspec-activemodel-mocks (1.1.0)
128
129
  activemodel (>= 3.0)
129
130
  activesupport (>= 3.0)
130
131
  rspec-mocks (>= 2.99, < 4.0)
@@ -133,7 +134,7 @@ GEM
133
134
  rspec-expectations (3.5.0)
134
135
  diff-lcs (>= 1.2.0, < 2.0)
135
136
  rspec-support (~> 3.5.0)
136
- rspec-its (1.2.0)
137
+ rspec-its (1.3.0)
137
138
  rspec-core (>= 3.0.0)
138
139
  rspec-expectations (>= 3.0.0)
139
140
  rspec-mocks (3.5.0)
@@ -148,20 +149,21 @@ GEM
148
149
  rspec-mocks (~> 3.5.0)
149
150
  rspec-support (~> 3.5.0)
150
151
  rspec-support (3.5.0)
151
- rubocop (0.54.0)
152
+ rubocop (0.67.2)
153
+ jaro_winkler (~> 1.5.1)
152
154
  parallel (~> 1.10)
153
- parser (>= 2.5)
154
- powerpack (~> 0.1)
155
+ parser (>= 2.5, != 2.5.1.1)
156
+ psych (>= 3.1.0)
155
157
  rainbow (>= 2.2.2, < 4.0)
156
158
  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)
159
+ unicode-display_width (>= 1.4.0, < 1.6)
160
+ ruby-progressbar (1.10.0)
161
+ simplecov (0.16.1)
162
+ docile (~> 1.1)
161
163
  json (>= 1.8, < 3)
162
164
  simplecov-html (~> 0.10.0)
163
165
  simplecov-html (0.10.2)
164
- sprockets (3.7.1)
166
+ sprockets (3.7.2)
165
167
  concurrent-ruby (~> 1.0)
166
168
  rack (> 1, < 3)
167
169
  sprockets-rails (3.2.1)
@@ -169,16 +171,16 @@ GEM
169
171
  activesupport (>= 4.0)
170
172
  sprockets (>= 3.0.0)
171
173
  sqlite3 (1.3.13)
172
- term-ansicolor (1.6.0)
174
+ term-ansicolor (1.7.1)
173
175
  tins (~> 1.0)
174
- test-unit (3.2.7)
176
+ test-unit (3.3.2)
175
177
  power_assert
176
178
  thor (0.19.4)
177
179
  thread_safe (0.3.6)
178
- tins (1.16.3)
180
+ tins (1.20.2)
179
181
  tzinfo (1.2.5)
180
182
  thread_safe (~> 0.1)
181
- unicode-display_width (1.3.0)
183
+ unicode-display_width (1.5.0)
182
184
  websocket-driver (0.7.0)
183
185
  websocket-extensions (>= 0.1.0)
184
186
  websocket-extensions (0.1.3)
@@ -190,7 +192,7 @@ DEPENDENCIES
190
192
  appraisal (~> 1.0.0)
191
193
  comma!
192
194
  coveralls
193
- rails (= 5.2.0)
195
+ rails (= 5.2.3)
194
196
  rake (~> 10.5.0)
195
197
  rspec (~> 3.5.0)
196
198
  rspec-activemodel-mocks
@@ -201,4 +203,4 @@ DEPENDENCIES
201
203
  test-unit
202
204
 
203
205
  BUNDLED WITH
204
- 1.16.1
206
+ 1.17.3