putsreq 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +5 -5
  2. data/.babelrc +26 -0
  3. data/.codeclimate.yml +29 -5
  4. data/.env.docker +6 -0
  5. data/.eslintignore +4 -0
  6. data/.eslintrc +22 -0
  7. data/.gitignore +8 -0
  8. data/.postcssrc.yml +3 -0
  9. data/.prettierrc +4 -0
  10. data/.reek +12 -0
  11. data/.rubocop.yml +47 -25
  12. data/.ruby-version +1 -1
  13. data/.simplecov +6 -0
  14. data/.travis.yml +38 -4
  15. data/Dockerfile +44 -0
  16. data/Gemfile +40 -61
  17. data/Gemfile.lock +294 -186
  18. data/Procfile +1 -1
  19. data/README.md +51 -46
  20. data/Rakefile +1 -1
  21. data/{public → app/assets}/images/logo.png +0 -0
  22. data/app/assets/javascripts/application.js +1 -1
  23. data/app/assets/javascripts/buckets.js.coffee +1 -21
  24. data/app/assets/stylesheets/{application.css → application.scss} +2 -1
  25. data/app/assets/stylesheets/buckets.css.scss +0 -2
  26. data/app/controllers/application_controller.rb +11 -9
  27. data/app/controllers/buckets_controller.rb +24 -18
  28. data/app/controllers/home_controller.rb +5 -5
  29. data/app/controllers/requests_controller.rb +13 -2
  30. data/app/helpers/application_helper.rb +6 -2
  31. data/app/interactors/create_or_retrieve_bucket.rb +17 -0
  32. data/app/interactors/create_request.rb +25 -7
  33. data/app/interactors/eval_response_builder.rb +9 -9
  34. data/app/interactors/filter_headers.rb +3 -3
  35. data/app/interactors/forward_request.rb +4 -4
  36. data/app/interactors/record_request.rb +1 -1
  37. data/app/interactors/track.rb +44 -0
  38. data/app/javascript/actionTypes.js +7 -0
  39. data/app/javascript/actions/index.js +64 -0
  40. data/app/javascript/components/Bucket.jsx +91 -0
  41. data/app/javascript/components/Pagination.jsx +67 -0
  42. data/app/javascript/components/RequestCount.jsx +21 -0
  43. data/app/javascript/components/request/Header.jsx +31 -0
  44. data/app/javascript/components/request/Response.jsx +28 -0
  45. data/app/javascript/components/request/index.jsx +47 -0
  46. data/app/javascript/packs/application.js +25 -0
  47. data/app/javascript/packs/hello_react.jsx +26 -0
  48. data/app/javascript/reducers/index.js +23 -0
  49. data/app/javascript/request_poller.js +19 -0
  50. data/app/javascript/store.js +9 -0
  51. data/app/models/bucket.rb +16 -10
  52. data/app/models/request.rb +2 -3
  53. data/app/models/user.rb +2 -2
  54. data/app/serializers/bucket_serializer.rb +11 -0
  55. data/app/serializers/request_serializer.rb +69 -0
  56. data/app/views/buckets/_buttons.html.erb +3 -3
  57. data/app/views/buckets/_form.html.erb +6 -6
  58. data/app/views/buckets/_readonly_buttons.html.erb +1 -1
  59. data/app/views/buckets/show.html.erb +12 -25
  60. data/app/views/home/index.html.erb +22 -16
  61. data/app/views/layouts/application.html.erb +21 -22
  62. data/app/views/layouts/devise.html.erb +16 -18
  63. data/app/views/shared/_flash.html.erb +3 -1
  64. data/bin/byebug +21 -0
  65. data/bin/cc-tddium-post-worker +21 -0
  66. data/bin/codeclimate-test-reporter +21 -0
  67. data/bin/coderay +21 -0
  68. data/bin/dotenv +21 -0
  69. data/bin/htmldiff +21 -0
  70. data/bin/httparty +21 -0
  71. data/bin/httpclient +21 -0
  72. data/bin/ldiff +21 -0
  73. data/bin/mongo_console +21 -0
  74. data/bin/nokogiri +21 -0
  75. data/bin/pry +21 -0
  76. data/bin/putsreq +18 -71
  77. data/bin/rackup +21 -0
  78. data/bin/rails +1 -1
  79. data/bin/ri +21 -0
  80. data/bin/rollbar-rails-runner +21 -0
  81. data/bin/rspec +10 -5
  82. data/bin/safe_yaml +21 -0
  83. data/bin/sass +21 -0
  84. data/bin/sass-convert +21 -0
  85. data/bin/scss +21 -0
  86. data/bin/sdoc +21 -0
  87. data/bin/sdoc-merge +21 -0
  88. data/bin/setup +38 -0
  89. data/bin/sprockets +21 -0
  90. data/bin/thor +21 -0
  91. data/bin/tilt +21 -0
  92. data/bin/unicorn +21 -0
  93. data/bin/unicorn_rails +21 -0
  94. data/bin/update +29 -0
  95. data/bin/webpack +15 -0
  96. data/bin/webpack-dev-server +15 -0
  97. data/bin/yarn +11 -0
  98. data/config/application.rb +6 -4
  99. data/config/boot.rb +1 -1
  100. data/config/environment.rb +1 -1
  101. data/config/environments/development.rb +7 -3
  102. data/config/environments/production.rb +5 -2
  103. data/config/environments/test.rb +3 -1
  104. data/config/initializers/devise.rb +2 -2
  105. data/config/initializers/rack_attack.rb +24 -0
  106. data/config/initializers/rollbar.rb +58 -0
  107. data/config/initializers/setup_email.rb +7 -7
  108. data/config/mongoid.yml +2 -2
  109. data/config/newrelic.yml +45 -0
  110. data/config/puma.rb +15 -0
  111. data/config/routes.rb +2 -0
  112. data/config/webpack/development.js +5 -0
  113. data/config/webpack/environment.js +3 -0
  114. data/config/webpack/production.js +5 -0
  115. data/config/webpack/test.js +5 -0
  116. data/config/webpacker.yml +70 -0
  117. data/docker-compose.yml +25 -0
  118. data/lib/putsreq/cli_helper.rb +114 -0
  119. data/lib/putsreq/version.rb +1 -1
  120. data/package.json +30 -0
  121. data/putsreq.gemspec +6 -7
  122. data/spec/controllers/buckets_controller_spec.rb +54 -46
  123. data/spec/interactors/create_or_retrieve_bucket_spec.rb +25 -0
  124. data/spec/interactors/create_request_spec.rb +11 -8
  125. data/spec/interactors/create_response_spec.rb +1 -1
  126. data/spec/interactors/eval_response_builder_spec.rb +14 -17
  127. data/spec/interactors/forward_request_spec.rb +4 -4
  128. data/spec/lib/putsreq/cli_helper_spec.rb +114 -0
  129. data/spec/models/bucket_spec.rb +3 -3
  130. data/spec/spec_helper.rb +25 -25
  131. data/yarn.lock +7043 -0
  132. metadata +85 -20
  133. data/.hound.yml +0 -14
  134. data/app/interactors/notify_count.rb +0 -15
  135. data/app/models/.keep +0 -0
  136. data/config/initializers/redis.rb +0 -17
  137. data/config/unicorn.rb +0 -16
  138. data/lib/assets/.keep +0 -0
  139. data/public/images/.keep +0 -0
  140. data/vendor/assets/javascripts/.keep +0 -0
  141. data/vendor/assets/stylesheets/.keep +0 -0
@@ -2,269 +2,377 @@ GEM
2
2
  remote: https://rubygems.org/
3
3
  remote: https://rails-assets.org/
4
4
  specs:
5
- actionmailer (4.0.13)
6
- actionpack (= 4.0.13)
5
+ actioncable (5.1.7)
6
+ actionpack (= 5.1.7)
7
+ nio4r (~> 2.0)
8
+ websocket-driver (~> 0.6.1)
9
+ actionmailer (5.1.7)
10
+ actionpack (= 5.1.7)
11
+ actionview (= 5.1.7)
12
+ activejob (= 5.1.7)
7
13
  mail (~> 2.5, >= 2.5.4)
8
- actionpack (4.0.13)
9
- activesupport (= 4.0.13)
10
- builder (~> 3.1.0)
11
- erubis (~> 2.7.0)
12
- rack (~> 1.5.2)
13
- rack-test (~> 0.6.2)
14
- activemodel (4.0.13)
15
- activesupport (= 4.0.13)
16
- builder (~> 3.1.0)
17
- activerecord (4.0.13)
18
- activemodel (= 4.0.13)
19
- activerecord-deprecated_finders (~> 1.0.2)
20
- activesupport (= 4.0.13)
21
- arel (~> 4.0.0)
22
- activerecord-deprecated_finders (1.0.4)
23
- activesupport (4.0.13)
24
- i18n (~> 0.6, >= 0.6.9)
25
- minitest (~> 4.2)
26
- multi_json (~> 1.3)
27
- thread_safe (~> 0.1)
28
- tzinfo (~> 0.3.37)
29
- addressable (2.5.0)
30
- public_suffix (~> 2.0, >= 2.0.2)
31
- arel (4.0.2)
32
- bcrypt (3.1.11)
33
- bootstrap-sass (3.1.1.1)
34
- sass (~> 3.2)
35
- bson (4.1.1)
36
- bson_ext (1.5.1)
37
- builder (3.1.4)
38
- byebug (9.0.6)
39
- codeclimate-test-reporter (1.0.3)
14
+ rails-dom-testing (~> 2.0)
15
+ actionpack (5.1.7)
16
+ actionview (= 5.1.7)
17
+ activesupport (= 5.1.7)
18
+ rack (~> 2.0)
19
+ rack-test (>= 0.6.3)
20
+ rails-dom-testing (~> 2.0)
21
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
22
+ actionview (5.1.7)
23
+ activesupport (= 5.1.7)
24
+ builder (~> 3.1)
25
+ erubi (~> 1.4)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
28
+ active_model_serializers (0.10.7)
29
+ actionpack (>= 4.1, < 6)
30
+ activemodel (>= 4.1, < 6)
31
+ case_transform (>= 0.2)
32
+ jsonapi-renderer (>= 0.1.1.beta1, < 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
+ addressable (2.5.2)
48
+ public_suffix (>= 2.0.2, < 4.0)
49
+ arel (8.0.0)
50
+ ast (2.4.0)
51
+ autoprefixer-rails (9.5.1.1)
52
+ execjs
53
+ bcrypt (3.1.12)
54
+ better_errors (2.4.0)
55
+ coderay (>= 1.0.0)
56
+ erubi (>= 1.0.0)
57
+ rack (>= 0.9.0)
58
+ binding_of_caller (0.7.3)
59
+ debug_inspector (>= 0.0.1)
60
+ bootstrap-sass (3.4.1)
61
+ autoprefixer-rails (>= 5.2.1)
62
+ sassc (>= 2.0.0)
63
+ bson (4.2.2)
64
+ builder (3.2.3)
65
+ byebug (9.1.0)
66
+ case_transform (0.2)
67
+ activesupport
68
+ codeclimate-test-reporter (1.0.7)
40
69
  simplecov
41
- coderay (1.1.1)
42
- coffee-rails (4.0.1)
70
+ coderay (1.1.2)
71
+ coffee-rails (4.2.2)
43
72
  coffee-script (>= 2.2.0)
44
- railties (>= 4.0.0, < 5.0)
73
+ railties (>= 4.0.0)
45
74
  coffee-script (2.4.1)
46
75
  coffee-script-source
47
76
  execjs
48
- coffee-script-source (1.10.0)
77
+ coffee-script-source (1.12.2)
78
+ concurrent-ruby (1.1.5)
49
79
  crack (0.4.3)
50
80
  safe_yaml (~> 1.0.0)
51
- database_cleaner (1.5.3)
52
- devise (3.5.10)
81
+ crass (1.0.4)
82
+ database_cleaner (1.6.2)
83
+ debug_inspector (0.0.3)
84
+ devise (4.6.2)
53
85
  bcrypt (~> 3.0)
54
86
  orm_adapter (~> 0.1)
55
- railties (>= 3.2.6, < 5)
87
+ railties (>= 4.1.0, < 6.0)
56
88
  responders
57
- thread_safe (~> 0.1)
58
89
  warden (~> 1.2.3)
59
- diff-lcs (1.2.5)
90
+ diff-lcs (1.3)
60
91
  docile (1.1.5)
61
- dotenv (2.1.1)
62
- dotenv-rails (2.1.1)
63
- dotenv (= 2.1.1)
64
- railties (>= 4.0, < 5.1)
65
- dotiw (3.1.1)
66
- actionpack (>= 3)
92
+ dotenv (2.2.1)
93
+ dotenv-rails (2.2.1)
94
+ dotenv (= 2.2.1)
95
+ railties (>= 3.2, < 5.2)
96
+ dotiw (4.0.0)
97
+ actionpack (>= 4)
67
98
  i18n
68
- erubis (2.7.0)
99
+ erubi (1.8.0)
69
100
  execjs (2.7.0)
70
- hashdiff (0.3.0)
71
- hike (1.2.3)
72
- httparty (0.14.0)
101
+ ffi (1.11.1)
102
+ globalid (0.4.2)
103
+ activesupport (>= 4.2.0)
104
+ hashdiff (0.3.7)
105
+ httparty (0.15.6)
73
106
  multi_xml (>= 0.5.2)
74
- httpclient (2.8.2.4)
75
- i18n (0.7.0)
107
+ i18n (1.6.0)
108
+ concurrent-ruby (~> 1.0)
76
109
  interactor (3.1.0)
77
- jbuilder (1.5.3)
78
- activesupport (>= 3.0.0)
79
- multi_json (>= 1.2.0)
80
- jquery-rails (3.1.4)
81
- railties (>= 3.0, < 5.0)
110
+ jaro_winkler (1.5.2)
111
+ jquery-rails (4.3.1)
112
+ rails-dom-testing (>= 1, < 3)
113
+ railties (>= 4.2.0)
82
114
  thor (>= 0.14, < 2.0)
83
- json (1.8.3)
84
- kaminari (0.17.0)
85
- actionpack (>= 3.0.0)
86
- activesupport (>= 3.0.0)
87
- kaminari-mongoid (0.1.2)
88
- kaminari
89
- kgio (2.10.0)
90
- libv8 (3.16.14.17)
91
- mail (2.6.4)
92
- mime-types (>= 1.16, < 4)
93
- method_source (0.8.2)
94
- mime-types (3.1)
95
- mime-types-data (~> 3.2015)
96
- mime-types-data (3.2016.0521)
97
- minitest (4.7.5)
98
- mongo (2.3.1)
99
- bson (~> 4.1)
100
- mongoid (5.1.5)
101
- activemodel (~> 4.0)
102
- mongo (~> 2.1)
103
- origin (~> 2.2)
104
- tzinfo (>= 0.3.37)
105
- multi_json (1.12.1)
106
- multi_xml (0.5.5)
107
- origin (2.2.2)
115
+ json (1.8.6)
116
+ jsonapi-renderer (0.2.0)
117
+ kaminari-actionview (1.1.1)
118
+ actionview
119
+ kaminari-core (= 1.1.1)
120
+ kaminari-core (1.1.1)
121
+ kaminari-mongoid (1.0.1)
122
+ kaminari-core (~> 1.0)
123
+ mongoid
124
+ libv8 (3.16.14.19)
125
+ loofah (2.2.3)
126
+ crass (~> 1.0.2)
127
+ nokogiri (>= 1.5.9)
128
+ mail (2.7.1)
129
+ mini_mime (>= 0.1.1)
130
+ method_source (0.9.2)
131
+ mini_mime (1.0.1)
132
+ mini_portile2 (2.4.0)
133
+ minitest (5.11.3)
134
+ mongo (2.4.3)
135
+ bson (>= 4.2.1, < 5.0.0)
136
+ mongoid (6.2.1)
137
+ activemodel (~> 5.1)
138
+ mongo (>= 2.4.1, < 3.0.0)
139
+ multi_json (1.12.2)
140
+ multi_xml (0.6.0)
141
+ newrelic_rpm (6.4.0.356)
142
+ nio4r (2.3.1)
143
+ nokogiri (1.10.3)
144
+ mini_portile2 (~> 2.4.0)
145
+ oj (3.3.9)
108
146
  orm_adapter (0.5.0)
109
- pry (0.10.4)
147
+ parallel (1.17.0)
148
+ parser (2.6.3.0)
149
+ ast (~> 2.4.0)
150
+ pry (0.11.3)
110
151
  coderay (~> 1.1.0)
111
- method_source (~> 0.8.1)
112
- slop (~> 3.4)
113
- pry-byebug (3.4.0)
114
- byebug (~> 9.0)
152
+ method_source (~> 0.9.0)
153
+ pry-byebug (3.5.1)
154
+ byebug (~> 9.1)
115
155
  pry (~> 0.10)
116
- public_suffix (2.0.4)
117
- pusher (1.3.0)
118
- httpclient (~> 2.7)
119
- multi_json (~> 1.0)
120
- pusher-signature (~> 0.1.8)
121
- pusher-signature (0.1.8)
122
- quiet_assets (1.1.0)
123
- railties (>= 3.1, < 5.0)
124
- rack (1.5.5)
125
- rack-cors (0.4.0)
126
- rack-test (0.6.3)
127
- rack (>= 1.0)
128
- rails (4.0.13)
129
- actionmailer (= 4.0.13)
130
- actionpack (= 4.0.13)
131
- activerecord (= 4.0.13)
132
- activesupport (= 4.0.13)
133
- bundler (>= 1.3.0, < 2.0)
134
- railties (= 4.0.13)
135
- sprockets-rails (~> 2.0)
156
+ pry-rails (0.3.6)
157
+ pry (>= 0.10.4)
158
+ public_suffix (3.0.1)
159
+ puma (3.11.4)
160
+ rack (2.0.7)
161
+ rack-attack (6.0.0)
162
+ rack (>= 1.0, < 3)
163
+ rack-cors (1.0.2)
164
+ rack-proxy (0.6.5)
165
+ rack
166
+ rack-test (1.1.0)
167
+ rack (>= 1.0, < 3)
168
+ rails (5.1.7)
169
+ actioncable (= 5.1.7)
170
+ actionmailer (= 5.1.7)
171
+ actionpack (= 5.1.7)
172
+ actionview (= 5.1.7)
173
+ activejob (= 5.1.7)
174
+ activemodel (= 5.1.7)
175
+ activerecord (= 5.1.7)
176
+ activesupport (= 5.1.7)
177
+ bundler (>= 1.3.0)
178
+ railties (= 5.1.7)
179
+ sprockets-rails (>= 2.0.0)
136
180
  rails-assets-bootstrap-less (3.3.4)
137
- rails-assets-clipboard (1.5.15)
181
+ rails-assets-clipboard (1.7.1)
138
182
  rails-assets-dispatcher (0.2.0)
139
183
  rails-assets-favico.js (0.3.10)
184
+ rails-controller-testing (1.0.2)
185
+ actionpack (~> 5.x, >= 5.0.1)
186
+ actionview (~> 5.x, >= 5.0.1)
187
+ activesupport (~> 5.x)
188
+ rails-dom-testing (2.0.3)
189
+ activesupport (>= 4.2.0)
190
+ nokogiri (>= 1.6)
191
+ rails-html-sanitizer (1.0.4)
192
+ loofah (~> 2.2, >= 2.2.2)
140
193
  rails_12factor (0.0.3)
141
194
  rails_serve_static_assets
142
195
  rails_stdout_logging
143
196
  rails_serve_static_assets (0.0.5)
144
197
  rails_stdout_logging (0.0.5)
145
- railties (4.0.13)
146
- actionpack (= 4.0.13)
147
- activesupport (= 4.0.13)
198
+ railties (5.1.7)
199
+ actionpack (= 5.1.7)
200
+ activesupport (= 5.1.7)
201
+ method_source
148
202
  rake (>= 0.8.7)
149
203
  thor (>= 0.18.1, < 2.0)
150
- raindrops (0.17.0)
151
- rake (11.3.0)
152
- rdoc (4.3.0)
153
- redis (3.3.2)
204
+ rainbow (3.0.0)
205
+ rake (12.3.2)
206
+ rb-fsevent (0.10.2)
207
+ rb-inotify (0.9.10)
208
+ ffi (>= 0.5.0, < 2)
209
+ redis (4.1.2)
210
+ redis-actionpack (5.0.2)
211
+ actionpack (>= 4.0, < 6)
212
+ redis-rack (>= 1, < 3)
213
+ redis-store (>= 1.1.0, < 2)
214
+ redis-activesupport (5.0.7)
215
+ activesupport (>= 3, < 6)
216
+ redis-store (>= 1.3, < 2)
217
+ redis-rack (2.0.5)
218
+ rack (>= 1.5, < 3)
219
+ redis-store (>= 1.2, < 2)
220
+ redis-rails (5.0.2)
221
+ redis-actionpack (>= 5.0, < 6)
222
+ redis-activesupport (>= 5.0, < 6)
223
+ redis-store (>= 1.2, < 2)
224
+ redis-store (1.6.0)
225
+ redis (>= 2.2, < 5)
154
226
  ref (2.0.0)
155
- responders (1.1.2)
156
- railties (>= 3.2, < 4.2)
157
- rspec (3.5.0)
158
- rspec-core (~> 3.5.0)
159
- rspec-expectations (~> 3.5.0)
160
- rspec-mocks (~> 3.5.0)
161
- rspec-core (3.5.4)
162
- rspec-support (~> 3.5.0)
163
- rspec-expectations (3.5.0)
227
+ responders (2.4.1)
228
+ actionpack (>= 4.2.0, < 6.0)
229
+ railties (>= 4.2.0, < 6.0)
230
+ rollbar (2.15.5)
231
+ multi_json
232
+ rspec (3.7.0)
233
+ rspec-core (~> 3.7.0)
234
+ rspec-expectations (~> 3.7.0)
235
+ rspec-mocks (~> 3.7.0)
236
+ rspec-core (3.7.0)
237
+ rspec-support (~> 3.7.0)
238
+ rspec-expectations (3.7.0)
164
239
  diff-lcs (>= 1.2.0, < 2.0)
165
- rspec-support (~> 3.5.0)
166
- rspec-mocks (3.5.0)
240
+ rspec-support (~> 3.7.0)
241
+ rspec-mocks (3.7.0)
167
242
  diff-lcs (>= 1.2.0, < 2.0)
168
- rspec-support (~> 3.5.0)
169
- rspec-rails (3.5.2)
243
+ rspec-support (~> 3.7.0)
244
+ rspec-rails (3.7.2)
170
245
  actionpack (>= 3.0)
171
246
  activesupport (>= 3.0)
172
247
  railties (>= 3.0)
173
- rspec-core (~> 3.5.0)
174
- rspec-expectations (~> 3.5.0)
175
- rspec-mocks (~> 3.5.0)
176
- rspec-support (~> 3.5.0)
177
- rspec-support (3.5.0)
248
+ rspec-core (~> 3.7.0)
249
+ rspec-expectations (~> 3.7.0)
250
+ rspec-mocks (~> 3.7.0)
251
+ rspec-support (~> 3.7.0)
252
+ rspec-support (3.7.0)
253
+ rubocop (0.71.0)
254
+ jaro_winkler (~> 1.5.1)
255
+ parallel (~> 1.10)
256
+ parser (>= 2.6)
257
+ rainbow (>= 2.2.2, < 4.0)
258
+ ruby-progressbar (~> 1.7)
259
+ unicode-display_width (>= 1.4.0, < 1.7)
260
+ rubocop-rails (2.0.1)
261
+ rack (>= 1.1)
262
+ rubocop (>= 0.70.0)
263
+ ruby-progressbar (1.10.1)
178
264
  safe_yaml (1.0.4)
179
- sass (3.2.19)
180
- sass-rails (4.0.5)
181
- railties (>= 4.0.0, < 5.0)
182
- sass (~> 3.2.2)
183
- sprockets (~> 2.8, < 3.0)
184
- sprockets-rails (~> 2.0)
185
- sdoc (0.4.2)
186
- json (~> 1.7, >= 1.7.7)
187
- rdoc (~> 4.0)
188
- simplecov (0.12.0)
265
+ sass (3.5.4)
266
+ sass-listen (~> 4.0.0)
267
+ sass-listen (4.0.0)
268
+ rb-fsevent (~> 0.9, >= 0.9.4)
269
+ rb-inotify (~> 0.9, >= 0.9.7)
270
+ sass-rails (5.0.7)
271
+ railties (>= 4.0.0, < 6)
272
+ sass (~> 3.1)
273
+ sprockets (>= 2.8, < 4.0)
274
+ sprockets-rails (>= 2.0, < 4.0)
275
+ tilt (>= 1.1, < 3)
276
+ sassc (2.0.1)
277
+ ffi (~> 1.9)
278
+ rake
279
+ simplecov (0.15.1)
189
280
  docile (~> 1.1.0)
190
281
  json (>= 1.8, < 3)
191
282
  simplecov-html (~> 0.10.0)
192
- simplecov-html (0.10.0)
193
- slop (3.6.0)
194
- sprockets (2.12.4)
195
- hike (~> 1.2)
196
- multi_json (~> 1.0)
197
- rack (~> 1.0)
198
- tilt (~> 1.1, != 1.3.0)
199
- sprockets-rails (2.3.3)
200
- actionpack (>= 3.0)
201
- activesupport (>= 3.0)
202
- sprockets (>= 2.8, < 4.0)
203
- staccato (0.5.0)
283
+ simplecov-html (0.10.2)
284
+ sprockets (3.7.2)
285
+ concurrent-ruby (~> 1.0)
286
+ rack (> 1, < 3)
287
+ sprockets-rails (3.2.1)
288
+ actionpack (>= 4.0)
289
+ activesupport (>= 4.0)
290
+ sprockets (>= 3.0.0)
291
+ staccato (0.5.1)
204
292
  stub_env (1.0.4)
205
293
  rspec (>= 2.0, < 4.0)
206
- therubyracer (0.12.2)
207
- libv8 (~> 3.16.14.0)
294
+ therubyracer (0.12.3)
295
+ libv8 (~> 3.16.14.15)
208
296
  ref
209
- thor (0.19.1)
210
- thread_safe (0.3.5)
211
- tilt (1.4.1)
212
- tzinfo (0.3.52)
213
- uglifier (3.0.3)
297
+ thor (0.20.3)
298
+ thread_safe (0.3.6)
299
+ tilt (2.0.8)
300
+ tzinfo (1.2.5)
301
+ thread_safe (~> 0.1)
302
+ uglifier (4.0.2)
214
303
  execjs (>= 0.3.0, < 3)
215
- unicorn (5.2.0)
216
- kgio (~> 2.6)
217
- raindrops (~> 0.7)
218
- warden (1.2.6)
219
- rack (>= 1.0)
220
- webmock (2.1.0)
304
+ unicode-display_width (1.6.0)
305
+ warden (1.2.8)
306
+ rack (>= 2.0.6)
307
+ webmock (3.1.1)
221
308
  addressable (>= 2.3.6)
222
309
  crack (>= 0.3.2)
223
310
  hashdiff
311
+ webpacker (3.6.0)
312
+ activesupport (>= 4.2)
313
+ rack-proxy (>= 0.6.1)
314
+ railties (>= 4.2)
315
+ websocket-driver (0.6.5)
316
+ websocket-extensions (>= 0.1.0)
317
+ websocket-extensions (0.1.4)
224
318
 
225
319
  PLATFORMS
226
320
  ruby
227
321
 
228
322
  DEPENDENCIES
229
- bootstrap-sass (~> 3.1.1)
230
- bson_ext
323
+ actionview (>= 5.1.6.2)
324
+ active_model_serializers
325
+ better_errors
326
+ binding_of_caller
327
+ bootstrap-sass (>= 3.4.1)
231
328
  codeclimate-test-reporter
232
- coffee-rails (~> 4.0.0)
329
+ coffee-rails
233
330
  database_cleaner
234
- devise
331
+ devise (>= 4.6.0)
235
332
  dotenv-rails
236
333
  dotiw
334
+ ffi (>= 1.9.24)
237
335
  httparty
238
336
  interactor (~> 3.0)
239
- jbuilder (~> 1.2)
240
337
  jquery-rails
338
+ kaminari-actionview
241
339
  kaminari-mongoid
242
- mongoid
340
+ loofah (>= 2.2.3)
341
+ mongoid (~> 6)
342
+ newrelic_rpm
343
+ nokogiri (>= 1.8.5)
344
+ oj
243
345
  pry-byebug
244
- pusher
245
- quiet_assets
346
+ pry-rails
347
+ puma
348
+ rack (>= 2.0.6)
349
+ rack-attack
246
350
  rack-cors
247
351
  rack-test
248
- rails (~> 4.0.4)
352
+ rails (~> 5.1.0)
249
353
  rails-assets-bootstrap-less!
250
354
  rails-assets-clipboard!
251
355
  rails-assets-dispatcher!
252
356
  rails-assets-favico.js!
357
+ rails-controller-testing
253
358
  rails_12factor
254
359
  redis
255
- rspec-rails (~> 3.3)
256
- sass-rails (~> 4.0.2)
257
- sdoc
360
+ redis-rails
361
+ rollbar
362
+ rspec-rails
363
+ rubocop-rails
364
+ sass-rails
258
365
  simplecov
366
+ sprockets (~> 3.7.2)
259
367
  staccato
260
368
  stub_env
261
369
  therubyracer
262
370
  uglifier (>= 1.3.0)
263
- unicorn
264
371
  webmock
372
+ webpacker (~> 3.0)
265
373
 
266
374
  RUBY VERSION
267
- ruby 2.3.1p112
375
+ ruby 2.5.5p157
268
376
 
269
377
  BUNDLED WITH
270
- 1.13.6
378
+ 1.17.3