roo_on_rails 1.10.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +672 -0
  3. data/.circleci/config.yml.erb +86 -0
  4. data/.gitignore +2 -1
  5. data/.rspec +2 -0
  6. data/CHANGELOG.md +27 -0
  7. data/README.md +75 -26
  8. data/README.routemaster_client.md +2 -0
  9. data/exe/roo_on_rails +96 -7
  10. data/lib/roo_on_rails/checks/base.rb +34 -17
  11. data/lib/roo_on_rails/checks/documentation/playbook.rb +2 -6
  12. data/lib/roo_on_rails/checks/environment.rb +2 -4
  13. data/lib/roo_on_rails/checks/environment_independent.rb +22 -0
  14. data/lib/roo_on_rails/checks/heroku/app_exists.rb +9 -2
  15. data/lib/roo_on_rails/checks/heroku/drains_metrics.rb +2 -2
  16. data/lib/roo_on_rails/checks/heroku/metrics_bridge_configured.rb +6 -2
  17. data/lib/roo_on_rails/checks/heroku/preboot_enabled.rb +3 -3
  18. data/lib/roo_on_rails/checks/papertrail/drain_exists.rb +4 -4
  19. data/lib/roo_on_rails/checks/papertrail/system_exists.rb +2 -2
  20. data/lib/roo_on_rails/checks/papertrail/system_named.rb +1 -1
  21. data/lib/roo_on_rails/checks/sidekiq/settings.rb +1 -1
  22. data/lib/roo_on_rails/checks/sidekiq/sidekiq.rb +1 -0
  23. data/lib/roo_on_rails/context_logging.rb +1 -0
  24. data/lib/roo_on_rails/harness.rb +8 -14
  25. data/lib/roo_on_rails/logfmt.rb +3 -15
  26. data/lib/roo_on_rails/logger.rb +104 -0
  27. data/lib/roo_on_rails/railties/database.rb +8 -6
  28. data/lib/roo_on_rails/railties/env.rb +11 -0
  29. data/lib/roo_on_rails/railties/google_oauth.rb +3 -7
  30. data/lib/roo_on_rails/railties/http.rb +31 -27
  31. data/lib/roo_on_rails/railties/logging.rb +16 -0
  32. data/lib/roo_on_rails/railties/new_relic.rb +15 -14
  33. data/lib/roo_on_rails/railties/rake_tasks.rb +0 -2
  34. data/lib/roo_on_rails/railties/routemaster.rb +9 -8
  35. data/lib/roo_on_rails/railties/sidekiq.rb +12 -8
  36. data/lib/roo_on_rails/routemaster/publisher.rb +14 -1
  37. data/lib/roo_on_rails/routemaster/publishers.rb +3 -3
  38. data/lib/roo_on_rails/sidekiq/process_scaling.rb +1 -1
  39. data/lib/roo_on_rails/tasks/db.rake +3 -2
  40. data/lib/roo_on_rails/version.rb +1 -1
  41. data/lib/roo_on_rails.rb +2 -1
  42. metadata +8 -7
  43. data/gemfiles/rails_3.gemfile.lock +0 -278
  44. data/gemfiles/rails_4.gemfile.lock +0 -293
  45. data/gemfiles/rails_5.gemfile.lock +0 -299
  46. data/gemfiles/rails_5_1.gemfile.lock +0 -300
  47. data/lib/roo_on_rails/railtie.rb +0 -16
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roo_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julien Letessier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-11 00:00:00.000000000 Z
11
+ date: 2017-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv-rails
@@ -360,6 +360,8 @@ executables:
360
360
  extensions: []
361
361
  extra_rdoc_files: []
362
362
  files:
363
+ - ".circleci/config.yml"
364
+ - ".circleci/config.yml.erb"
363
365
  - ".codeclimate.yml"
364
366
  - ".codecov.yml"
365
367
  - ".gitignore"
@@ -382,13 +384,9 @@ files:
382
384
  - exe/roo_on_rails
383
385
  - gemfiles/.bundle/config
384
386
  - gemfiles/rails_3.gemfile
385
- - gemfiles/rails_3.gemfile.lock
386
387
  - gemfiles/rails_4.gemfile
387
- - gemfiles/rails_4.gemfile.lock
388
388
  - gemfiles/rails_5.gemfile
389
- - gemfiles/rails_5.gemfile.lock
390
389
  - gemfiles/rails_5_1.gemfile
391
- - gemfiles/rails_5_1.gemfile.lock
392
390
  - lib/roo_on_rails.rb
393
391
  - lib/roo_on_rails/checks.rb
394
392
  - lib/roo_on_rails/checks/base.rb
@@ -396,6 +394,7 @@ files:
396
394
  - lib/roo_on_rails/checks/documentation/playbook_template.md
397
395
  - lib/roo_on_rails/checks/env_specific.rb
398
396
  - lib/roo_on_rails/checks/environment.rb
397
+ - lib/roo_on_rails/checks/environment_independent.rb
399
398
  - lib/roo_on_rails/checks/git/origin.rb
400
399
  - lib/roo_on_rails/checks/github/branch_protection.rb
401
400
  - lib/roo_on_rails/checks/github/token.rb
@@ -422,12 +421,14 @@ files:
422
421
  - lib/roo_on_rails/environment.rb
423
422
  - lib/roo_on_rails/harness.rb
424
423
  - lib/roo_on_rails/logfmt.rb
424
+ - lib/roo_on_rails/logger.rb
425
425
  - lib/roo_on_rails/papertrail_client.rb
426
426
  - lib/roo_on_rails/rack/safe_timeouts.rb
427
- - lib/roo_on_rails/railtie.rb
428
427
  - lib/roo_on_rails/railties/database.rb
428
+ - lib/roo_on_rails/railties/env.rb
429
429
  - lib/roo_on_rails/railties/google_oauth.rb
430
430
  - lib/roo_on_rails/railties/http.rb
431
+ - lib/roo_on_rails/railties/logging.rb
431
432
  - lib/roo_on_rails/railties/new_relic.rb
432
433
  - lib/roo_on_rails/railties/rake_tasks.rb
433
434
  - lib/roo_on_rails/railties/routemaster.rb
@@ -1,278 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- roo_on_rails (1.10.0)
5
- dogstatsd-ruby
6
- dotenv-rails (~> 2.1)
7
- faraday
8
- faraday_middleware
9
- hashie (~> 3.4)
10
- hirefire-resource
11
- newrelic_rpm
12
- octokit
13
- omniauth-google-oauth2
14
- platform-api (~> 2.0)
15
- rack-ssl-enforcer
16
- rack-timeout
17
- rails (>= 3.2.22, < 5.2)
18
- routemaster-client
19
- sidekiq
20
-
21
- GEM
22
- remote: https://rubygems.org/
23
- specs:
24
- actionmailer (3.2.22.5)
25
- actionpack (= 3.2.22.5)
26
- mail (~> 2.5.4)
27
- actionpack (3.2.22.5)
28
- activemodel (= 3.2.22.5)
29
- activesupport (= 3.2.22.5)
30
- builder (~> 3.0.0)
31
- erubis (~> 2.7.0)
32
- journey (~> 1.0.4)
33
- rack (~> 1.4.5)
34
- rack-cache (~> 1.2)
35
- rack-test (~> 0.6.1)
36
- sprockets (~> 2.2.1)
37
- activemodel (3.2.22.5)
38
- activesupport (= 3.2.22.5)
39
- builder (~> 3.0.0)
40
- activerecord (3.2.22.5)
41
- activemodel (= 3.2.22.5)
42
- activesupport (= 3.2.22.5)
43
- arel (~> 3.0.2)
44
- tzinfo (~> 0.3.29)
45
- activeresource (3.2.22.5)
46
- activemodel (= 3.2.22.5)
47
- activesupport (= 3.2.22.5)
48
- activesupport (3.2.22.5)
49
- i18n (~> 0.6, >= 0.6.4)
50
- multi_json (~> 1.0)
51
- addressable (2.5.1)
52
- public_suffix (~> 2.0, >= 2.0.2)
53
- appraisal (2.2.0)
54
- bundler
55
- rake
56
- thor (>= 0.14.0)
57
- arel (3.0.3)
58
- builder (3.0.4)
59
- byebug (9.0.6)
60
- codecov (0.1.10)
61
- json
62
- simplecov
63
- url
64
- coderay (1.1.1)
65
- concurrent-ruby (1.0.5)
66
- connection_pool (2.2.1)
67
- crack (0.4.3)
68
- safe_yaml (~> 1.0.0)
69
- diff-lcs (1.3)
70
- docile (1.1.5)
71
- dogstatsd-ruby (3.0.0)
72
- dotenv (2.2.1)
73
- dotenv-rails (2.2.1)
74
- dotenv (= 2.2.1)
75
- railties (>= 3.2, < 5.2)
76
- erubis (2.7.0)
77
- ethon (0.10.1)
78
- ffi (>= 1.3.0)
79
- excon (0.57.1)
80
- faraday (0.12.2)
81
- multipart-post (>= 1.2, < 3)
82
- faraday_middleware (0.12.2)
83
- faraday (>= 0.7.4, < 1.0)
84
- ffi (1.9.18)
85
- formatador (0.2.5)
86
- guard (2.14.1)
87
- formatador (>= 0.2.4)
88
- listen (>= 2.7, < 4.0)
89
- lumberjack (~> 1.0)
90
- nenv (~> 0.1)
91
- notiffany (~> 0.0)
92
- pry (>= 0.9.12)
93
- shellany (~> 0.0)
94
- thor (>= 0.18.1)
95
- guard-compat (1.2.1)
96
- guard-rspec (4.7.3)
97
- guard (~> 2.1)
98
- guard-compat (~> 1.1)
99
- rspec (>= 2.99.0, < 4.0)
100
- hashdiff (0.3.4)
101
- hashie (3.5.6)
102
- heroics (0.0.23)
103
- erubis (~> 2.0)
104
- excon
105
- multi_json (>= 1.9.2)
106
- hike (1.2.3)
107
- hirefire-resource (0.4.2)
108
- i18n (0.8.4)
109
- journey (1.0.4)
110
- json (1.8.6)
111
- jwt (1.5.6)
112
- listen (3.1.5)
113
- rb-fsevent (~> 0.9, >= 0.9.4)
114
- rb-inotify (~> 0.9, >= 0.9.7)
115
- ruby_dep (~> 1.2)
116
- lumberjack (1.0.12)
117
- mail (2.5.5)
118
- mime-types (~> 1.16)
119
- treetop (~> 1.4.8)
120
- memfs (1.0.0)
121
- method_source (0.8.2)
122
- mime-types (1.25.1)
123
- moneta (0.8.1)
124
- multi_json (1.12.1)
125
- multi_xml (0.6.0)
126
- multipart-post (2.0.0)
127
- nenv (0.3.0)
128
- newrelic_rpm (4.3.0.335)
129
- notiffany (0.1.1)
130
- nenv (~> 0.1)
131
- shellany (~> 0.0)
132
- oauth2 (1.4.0)
133
- faraday (>= 0.8, < 0.13)
134
- jwt (~> 1.0)
135
- multi_json (~> 1.3)
136
- multi_xml (~> 0.5)
137
- rack (>= 1.2, < 3)
138
- octokit (4.7.0)
139
- sawyer (~> 0.8.0, >= 0.5.3)
140
- oj (2.18.5)
141
- omniauth (1.4.2)
142
- hashie (>= 1.2, < 4)
143
- rack (>= 1.0, < 3)
144
- omniauth-google-oauth2 (0.5.1)
145
- jwt (~> 1.5)
146
- multi_json (~> 1.3)
147
- omniauth (>= 1.1.1)
148
- omniauth-oauth2 (>= 1.3.1)
149
- omniauth-oauth2 (1.4.0)
150
- oauth2 (~> 1.0)
151
- omniauth (~> 1.2)
152
- pg (0.21.0)
153
- platform-api (2.1.0)
154
- heroics (~> 0.0.23)
155
- moneta (~> 0.8.1)
156
- polyglot (0.3.5)
157
- pry (0.10.4)
158
- coderay (~> 1.1.0)
159
- method_source (~> 0.8.1)
160
- slop (~> 3.4)
161
- pry-byebug (3.4.2)
162
- byebug (~> 9.0)
163
- pry (~> 0.10)
164
- public_suffix (2.0.5)
165
- rack (1.4.7)
166
- rack-cache (1.7.0)
167
- rack (>= 0.4)
168
- rack-protection (2.0.0)
169
- rack
170
- rack-ssl (1.3.4)
171
- rack
172
- rack-ssl-enforcer (0.2.9)
173
- rack-test (0.6.3)
174
- rack (>= 1.0)
175
- rack-timeout (0.4.2)
176
- rails (3.2.22.5)
177
- actionmailer (= 3.2.22.5)
178
- actionpack (= 3.2.22.5)
179
- activerecord (= 3.2.22.5)
180
- activeresource (= 3.2.22.5)
181
- activesupport (= 3.2.22.5)
182
- bundler (~> 1.0)
183
- railties (= 3.2.22.5)
184
- railties (3.2.22.5)
185
- actionpack (= 3.2.22.5)
186
- activesupport (= 3.2.22.5)
187
- rack-ssl (~> 1.3.2)
188
- rake (>= 0.8.7)
189
- rdoc (~> 3.4)
190
- thor (>= 0.14.6, < 2.0)
191
- rake (10.5.0)
192
- rb-fsevent (0.9.8)
193
- rb-inotify (0.9.10)
194
- ffi (>= 0.5.0, < 2)
195
- rdoc (3.12.2)
196
- json (~> 1.4)
197
- redis (3.3.3)
198
- routemaster-client (3.1.0)
199
- faraday (>= 0.9.0)
200
- oj (~> 2.17)
201
- typhoeus (~> 1.1)
202
- wisper (~> 1.6.1)
203
- rspec (3.6.0)
204
- rspec-core (~> 3.6.0)
205
- rspec-expectations (~> 3.6.0)
206
- rspec-mocks (~> 3.6.0)
207
- rspec-core (3.6.0)
208
- rspec-support (~> 3.6.0)
209
- rspec-expectations (3.6.0)
210
- diff-lcs (>= 1.2.0, < 2.0)
211
- rspec-support (~> 3.6.0)
212
- rspec-mocks (3.6.0)
213
- diff-lcs (>= 1.2.0, < 2.0)
214
- rspec-support (~> 3.6.0)
215
- rspec-support (3.6.0)
216
- ruby_dep (1.5.0)
217
- safe_yaml (1.0.4)
218
- sawyer (0.8.1)
219
- addressable (>= 2.3.5, < 2.6)
220
- faraday (~> 0.8, < 1.0)
221
- shellany (0.0.1)
222
- sidekiq (4.2.10)
223
- concurrent-ruby (~> 1.0)
224
- connection_pool (~> 2.2, >= 2.2.0)
225
- rack-protection (>= 1.5.0)
226
- redis (~> 3.2, >= 3.2.1)
227
- simplecov (0.14.1)
228
- docile (~> 1.1.0)
229
- json (>= 1.8, < 3)
230
- simplecov-html (~> 0.10.0)
231
- simplecov-html (0.10.1)
232
- slop (3.6.0)
233
- sprockets (2.2.3)
234
- hike (~> 1.2)
235
- multi_json (~> 1.0)
236
- rack (~> 1.0)
237
- tilt (~> 1.1, != 1.3.0)
238
- sqlite3 (1.3.13)
239
- thor (0.19.4)
240
- tilt (1.4.1)
241
- treetop (1.4.15)
242
- polyglot
243
- polyglot (>= 0.3.1)
244
- typhoeus (1.1.2)
245
- ethon (>= 0.9.0)
246
- tzinfo (0.3.53)
247
- url (0.3.2)
248
- webmock (3.0.1)
249
- addressable (>= 2.3.6)
250
- crack (>= 0.3.2)
251
- hashdiff
252
- wisper (1.6.1)
253
-
254
- PLATFORMS
255
- ruby
256
-
257
- DEPENDENCIES
258
- appraisal
259
- bundler (~> 1.13)
260
- codecov
261
- guard
262
- guard-rspec
263
- memfs
264
- pg
265
- pry-byebug
266
- rack-test
267
- rails (~> 3.2)
268
- rake (~> 10.0)
269
- roo_on_rails!
270
- rspec (~> 3.0)
271
- sidekiq (< 5)
272
- simplecov
273
- sqlite3
274
- thor (~> 0.19)
275
- webmock
276
-
277
- BUNDLED WITH
278
- 1.15.3
@@ -1,293 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- roo_on_rails (1.10.0)
5
- dogstatsd-ruby
6
- dotenv-rails (~> 2.1)
7
- faraday
8
- faraday_middleware
9
- hashie (~> 3.4)
10
- hirefire-resource
11
- newrelic_rpm
12
- octokit
13
- omniauth-google-oauth2
14
- platform-api (~> 2.0)
15
- rack-ssl-enforcer
16
- rack-timeout
17
- rails (>= 3.2.22, < 5.2)
18
- routemaster-client
19
- sidekiq
20
-
21
- GEM
22
- remote: https://rubygems.org/
23
- specs:
24
- actionmailer (4.2.8)
25
- actionpack (= 4.2.8)
26
- actionview (= 4.2.8)
27
- activejob (= 4.2.8)
28
- mail (~> 2.5, >= 2.5.4)
29
- rails-dom-testing (~> 1.0, >= 1.0.5)
30
- actionpack (4.2.8)
31
- actionview (= 4.2.8)
32
- activesupport (= 4.2.8)
33
- rack (~> 1.6)
34
- rack-test (~> 0.6.2)
35
- rails-dom-testing (~> 1.0, >= 1.0.5)
36
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
37
- actionview (4.2.8)
38
- activesupport (= 4.2.8)
39
- builder (~> 3.1)
40
- erubis (~> 2.7.0)
41
- rails-dom-testing (~> 1.0, >= 1.0.5)
42
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
43
- activejob (4.2.8)
44
- activesupport (= 4.2.8)
45
- globalid (>= 0.3.0)
46
- activemodel (4.2.8)
47
- activesupport (= 4.2.8)
48
- builder (~> 3.1)
49
- activerecord (4.2.8)
50
- activemodel (= 4.2.8)
51
- activesupport (= 4.2.8)
52
- arel (~> 6.0)
53
- activesupport (4.2.8)
54
- i18n (~> 0.7)
55
- minitest (~> 5.1)
56
- thread_safe (~> 0.3, >= 0.3.4)
57
- tzinfo (~> 1.1)
58
- addressable (2.5.1)
59
- public_suffix (~> 2.0, >= 2.0.2)
60
- appraisal (2.2.0)
61
- bundler
62
- rake
63
- thor (>= 0.14.0)
64
- arel (6.0.4)
65
- builder (3.2.3)
66
- byebug (9.0.6)
67
- codecov (0.1.10)
68
- json
69
- simplecov
70
- url
71
- coderay (1.1.1)
72
- concurrent-ruby (1.0.5)
73
- connection_pool (2.2.1)
74
- crack (0.4.3)
75
- safe_yaml (~> 1.0.0)
76
- diff-lcs (1.3)
77
- docile (1.1.5)
78
- dogstatsd-ruby (3.0.0)
79
- dotenv (2.2.1)
80
- dotenv-rails (2.2.1)
81
- dotenv (= 2.2.1)
82
- railties (>= 3.2, < 5.2)
83
- erubis (2.7.0)
84
- ethon (0.10.1)
85
- ffi (>= 1.3.0)
86
- excon (0.57.1)
87
- faraday (0.12.2)
88
- multipart-post (>= 1.2, < 3)
89
- faraday_middleware (0.12.2)
90
- faraday (>= 0.7.4, < 1.0)
91
- ffi (1.9.18)
92
- formatador (0.2.5)
93
- globalid (0.4.0)
94
- activesupport (>= 4.2.0)
95
- guard (2.14.1)
96
- formatador (>= 0.2.4)
97
- listen (>= 2.7, < 4.0)
98
- lumberjack (~> 1.0)
99
- nenv (~> 0.1)
100
- notiffany (~> 0.0)
101
- pry (>= 0.9.12)
102
- shellany (~> 0.0)
103
- thor (>= 0.18.1)
104
- guard-compat (1.2.1)
105
- guard-rspec (4.7.3)
106
- guard (~> 2.1)
107
- guard-compat (~> 1.1)
108
- rspec (>= 2.99.0, < 4.0)
109
- hashdiff (0.3.4)
110
- hashie (3.5.6)
111
- heroics (0.0.23)
112
- erubis (~> 2.0)
113
- excon
114
- multi_json (>= 1.9.2)
115
- hirefire-resource (0.4.2)
116
- i18n (0.8.4)
117
- json (2.1.0)
118
- jwt (1.5.6)
119
- listen (3.1.5)
120
- rb-fsevent (~> 0.9, >= 0.9.4)
121
- rb-inotify (~> 0.9, >= 0.9.7)
122
- ruby_dep (~> 1.2)
123
- loofah (2.0.3)
124
- nokogiri (>= 1.5.9)
125
- lumberjack (1.0.12)
126
- mail (2.6.6)
127
- mime-types (>= 1.16, < 4)
128
- memfs (1.0.0)
129
- method_source (0.8.2)
130
- mime-types (3.1)
131
- mime-types-data (~> 3.2015)
132
- mime-types-data (3.2016.0521)
133
- mini_portile2 (2.2.0)
134
- minitest (5.10.2)
135
- moneta (0.8.1)
136
- multi_json (1.12.1)
137
- multi_xml (0.6.0)
138
- multipart-post (2.0.0)
139
- nenv (0.3.0)
140
- newrelic_rpm (4.3.0.335)
141
- nokogiri (1.8.0)
142
- mini_portile2 (~> 2.2.0)
143
- notiffany (0.1.1)
144
- nenv (~> 0.1)
145
- shellany (~> 0.0)
146
- oauth2 (1.4.0)
147
- faraday (>= 0.8, < 0.13)
148
- jwt (~> 1.0)
149
- multi_json (~> 1.3)
150
- multi_xml (~> 0.5)
151
- rack (>= 1.2, < 3)
152
- octokit (4.7.0)
153
- sawyer (~> 0.8.0, >= 0.5.3)
154
- oj (2.18.5)
155
- omniauth (1.6.1)
156
- hashie (>= 3.4.6, < 3.6.0)
157
- rack (>= 1.6.2, < 3)
158
- omniauth-google-oauth2 (0.5.1)
159
- jwt (~> 1.5)
160
- multi_json (~> 1.3)
161
- omniauth (>= 1.1.1)
162
- omniauth-oauth2 (>= 1.3.1)
163
- omniauth-oauth2 (1.4.0)
164
- oauth2 (~> 1.0)
165
- omniauth (~> 1.2)
166
- pg (0.21.0)
167
- platform-api (2.1.0)
168
- heroics (~> 0.0.23)
169
- moneta (~> 0.8.1)
170
- pry (0.10.4)
171
- coderay (~> 1.1.0)
172
- method_source (~> 0.8.1)
173
- slop (~> 3.4)
174
- pry-byebug (3.4.2)
175
- byebug (~> 9.0)
176
- pry (~> 0.10)
177
- public_suffix (2.0.5)
178
- rack (1.6.8)
179
- rack-protection (2.0.0)
180
- rack
181
- rack-ssl-enforcer (0.2.9)
182
- rack-test (0.6.3)
183
- rack (>= 1.0)
184
- rack-timeout (0.4.2)
185
- rails (4.2.8)
186
- actionmailer (= 4.2.8)
187
- actionpack (= 4.2.8)
188
- actionview (= 4.2.8)
189
- activejob (= 4.2.8)
190
- activemodel (= 4.2.8)
191
- activerecord (= 4.2.8)
192
- activesupport (= 4.2.8)
193
- bundler (>= 1.3.0, < 2.0)
194
- railties (= 4.2.8)
195
- sprockets-rails
196
- rails-deprecated_sanitizer (1.0.3)
197
- activesupport (>= 4.2.0.alpha)
198
- rails-dom-testing (1.0.8)
199
- activesupport (>= 4.2.0.beta, < 5.0)
200
- nokogiri (~> 1.6)
201
- rails-deprecated_sanitizer (>= 1.0.1)
202
- rails-html-sanitizer (1.0.3)
203
- loofah (~> 2.0)
204
- railties (4.2.8)
205
- actionpack (= 4.2.8)
206
- activesupport (= 4.2.8)
207
- rake (>= 0.8.7)
208
- thor (>= 0.18.1, < 2.0)
209
- rake (10.5.0)
210
- rb-fsevent (0.9.8)
211
- rb-inotify (0.9.10)
212
- ffi (>= 0.5.0, < 2)
213
- redis (3.3.3)
214
- routemaster-client (3.1.0)
215
- faraday (>= 0.9.0)
216
- oj (~> 2.17)
217
- typhoeus (~> 1.1)
218
- wisper (~> 1.6.1)
219
- rspec (3.6.0)
220
- rspec-core (~> 3.6.0)
221
- rspec-expectations (~> 3.6.0)
222
- rspec-mocks (~> 3.6.0)
223
- rspec-core (3.6.0)
224
- rspec-support (~> 3.6.0)
225
- rspec-expectations (3.6.0)
226
- diff-lcs (>= 1.2.0, < 2.0)
227
- rspec-support (~> 3.6.0)
228
- rspec-mocks (3.6.0)
229
- diff-lcs (>= 1.2.0, < 2.0)
230
- rspec-support (~> 3.6.0)
231
- rspec-support (3.6.0)
232
- ruby_dep (1.5.0)
233
- safe_yaml (1.0.4)
234
- sawyer (0.8.1)
235
- addressable (>= 2.3.5, < 2.6)
236
- faraday (~> 0.8, < 1.0)
237
- shellany (0.0.1)
238
- sidekiq (5.0.4)
239
- concurrent-ruby (~> 1.0)
240
- connection_pool (~> 2.2, >= 2.2.0)
241
- rack-protection (>= 1.5.0)
242
- redis (~> 3.3, >= 3.3.3)
243
- simplecov (0.14.1)
244
- docile (~> 1.1.0)
245
- json (>= 1.8, < 3)
246
- simplecov-html (~> 0.10.0)
247
- simplecov-html (0.10.1)
248
- slop (3.6.0)
249
- sprockets (3.7.1)
250
- concurrent-ruby (~> 1.0)
251
- rack (> 1, < 3)
252
- sprockets-rails (3.2.0)
253
- actionpack (>= 4.0)
254
- activesupport (>= 4.0)
255
- sprockets (>= 3.0.0)
256
- sqlite3 (1.3.13)
257
- thor (0.19.4)
258
- thread_safe (0.3.6)
259
- typhoeus (1.1.2)
260
- ethon (>= 0.9.0)
261
- tzinfo (1.2.3)
262
- thread_safe (~> 0.1)
263
- url (0.3.2)
264
- webmock (3.0.1)
265
- addressable (>= 2.3.6)
266
- crack (>= 0.3.2)
267
- hashdiff
268
- wisper (1.6.1)
269
-
270
- PLATFORMS
271
- ruby
272
-
273
- DEPENDENCIES
274
- appraisal
275
- bundler (~> 1.13)
276
- codecov
277
- guard
278
- guard-rspec
279
- memfs
280
- pg
281
- pry-byebug
282
- rack-test
283
- rails (~> 4.2)
284
- rake (~> 10.0)
285
- roo_on_rails!
286
- rspec (~> 3.0)
287
- simplecov
288
- sqlite3
289
- thor (~> 0.19)
290
- webmock
291
-
292
- BUNDLED WITH
293
- 1.15.3