routemaster-drain 2.3.0 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +19 -0
- data/.env.test +2 -2
- data/.rubocop.yml +1156 -0
- data/.ruby-version +1 -1
- data/.travis.yml +8 -0
- data/Appraisals +3 -3
- data/CHANGELOG.md +31 -5
- data/Gemfile +7 -6
- data/Gemfile.lock +23 -17
- data/README.md +19 -0
- data/appraise +28 -0
- data/gemfiles/rails_3.gemfile +8 -8
- data/gemfiles/rails_3.gemfile.lock +64 -58
- data/gemfiles/rails_4.gemfile +8 -8
- data/gemfiles/rails_4.gemfile.lock +121 -92
- data/gemfiles/rails_5.gemfile +8 -8
- data/gemfiles/rails_5.gemfile.lock +78 -72
- data/lib/core_ext/forwardable.rb +14 -0
- data/lib/routemaster/api_client.rb +65 -36
- data/lib/routemaster/cache.rb +7 -1
- data/lib/routemaster/cache_key.rb +7 -0
- data/lib/routemaster/config.rb +12 -13
- data/lib/routemaster/dirty/map.rb +1 -1
- data/lib/routemaster/drain.rb +1 -1
- data/lib/routemaster/event_index.rb +21 -0
- data/lib/routemaster/jobs.rb +2 -0
- data/lib/routemaster/jobs/cache_and_sweep.rb +2 -1
- data/lib/routemaster/jobs/job.rb +2 -0
- data/lib/routemaster/middleware/cache.rb +2 -5
- data/lib/routemaster/middleware/parse.rb +2 -2
- data/lib/routemaster/middleware/response_caching.rb +54 -24
- data/lib/routemaster/null_logger.rb +16 -0
- data/lib/routemaster/redis_broker.rb +8 -7
- data/lib/routemaster/resources/rest_resource.rb +18 -7
- data/lib/routemaster/responses/future_response.rb +37 -17
- data/lib/routemaster/responses/hateoas_enumerable_response.rb +47 -0
- data/lib/routemaster/responses/hateoas_response.rb +9 -12
- data/routemaster-drain.gemspec +2 -2
- data/spec/routemaster/api_client_spec.rb +118 -44
- data/spec/routemaster/drain/caching_spec.rb +4 -3
- data/spec/routemaster/integration/api_client_spec.rb +266 -102
- data/spec/routemaster/integration/cache_spec.rb +52 -39
- data/spec/routemaster/middleware/cache_spec.rb +4 -6
- data/spec/routemaster/redis_broker_spec.rb +11 -11
- data/spec/routemaster/resources/rest_resource_spec.rb +4 -2
- data/spec/routemaster/responses/future_response_spec.rb +18 -0
- data/spec/routemaster/responses/hateoas_enumerable_response_spec.rb +78 -0
- data/spec/routemaster/responses/hateoas_response_spec.rb +52 -53
- data/spec/spec_helper.rb +2 -1
- data/spec/support/breakpoint_class.rb +14 -0
- data/spec/support/server.rb +52 -0
- data/spec/support/uses_redis.rb +2 -2
- metadata +26 -10
- data/test.rb +0 -17
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.4.0
|
data/.travis.yml
CHANGED
@@ -5,6 +5,8 @@ services:
|
|
5
5
|
rvm:
|
6
6
|
- 2.2.5
|
7
7
|
- 2.3.1
|
8
|
+
- 2.4.0
|
9
|
+
- ruby-head
|
8
10
|
gemfile:
|
9
11
|
- gemfiles/rails_3.gemfile
|
10
12
|
- gemfiles/rails_4.gemfile
|
@@ -12,3 +14,9 @@ gemfile:
|
|
12
14
|
script:
|
13
15
|
- bundle exec rspec
|
14
16
|
- bundle exec codeclimate-test-reporter
|
17
|
+
matrix:
|
18
|
+
allow_failures:
|
19
|
+
- rvm: ruby-head
|
20
|
+
- rvm: 2.4.0
|
21
|
+
gemfile: gemfiles/rails_3.gemfile
|
22
|
+
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,15 +1,41 @@
|
|
1
|
+
### 2.4.0 (2017-03-03)
|
2
|
+
|
3
|
+
Features:
|
4
|
+
|
5
|
+
- Collection traversal API (#24)
|
6
|
+
- Permits disabling of response caching (#26)
|
7
|
+
- Use `Redis::Distributed` for caching (#27)
|
8
|
+
|
9
|
+
Bug fixes:
|
10
|
+
|
11
|
+
- Do not cache collection responses (#26)
|
12
|
+
- Fixes Sidekiq loading issue (#25)
|
13
|
+
- Concurrency issues when caching (#28)
|
14
|
+
- Ruby 2.4.0 compatibility (#31)
|
15
|
+
|
16
|
+
Other:
|
17
|
+
|
18
|
+
- Switches from `net-http-persistent` to `typhoeus` (#31)
|
19
|
+
- Switches from `ruby-thread` to `concurrent-ruby` (#31)
|
20
|
+
|
21
|
+
|
1
22
|
### 2.3.0 (2017-01-16)
|
2
23
|
|
3
|
-
|
4
|
-
|
24
|
+
Features:
|
25
|
+
|
26
|
+
- Adds `HateoasResponse#has?` to check for resource relations (#22)
|
27
|
+
|
28
|
+
Bug fixes:
|
29
|
+
|
30
|
+
- Fixes 404s breaking the `CacheAndSweep` job (#21)
|
5
31
|
|
6
32
|
### 2.2.2 (2017-01-10)
|
7
33
|
|
8
34
|
- Fix logging for error responses:
|
9
35
|
For unsuccessful responses rescue the raised error and
|
10
|
-
send increment signal to metrics backend
|
11
|
-
- Add Telemetry support for requests and responses
|
12
|
-
- Add support for PATCH requests.
|
36
|
+
send increment signal to metrics backend (#15)
|
37
|
+
- Add Telemetry support for requests and responses (#16)
|
38
|
+
- Add support for PATCH requests. (#12)
|
13
39
|
Invalidate cached response (if any) on PATCH
|
14
40
|
|
15
41
|
### 2.0.0 (2016-12-14)
|
data/Gemfile
CHANGED
@@ -17,9 +17,10 @@ gem 'simplecov'
|
|
17
17
|
gem 'resque'
|
18
18
|
gem 'sidekiq'
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
20
|
+
gem 'guard-rspec', require: false
|
21
|
+
gem 'pry', require: false
|
22
|
+
gem 'byebug', require: false
|
23
|
+
gem 'rspec', require: false
|
24
|
+
gem 'appraisal', require: false
|
25
|
+
gem 'dogstatsd', require: false
|
26
|
+
gem 'fork_break', require: false
|
data/Gemfile.lock
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
routemaster-drain (2.
|
4
|
+
routemaster-drain (2.4.0)
|
5
|
+
concurrent-ruby
|
5
6
|
faraday (>= 0.9.0)
|
6
7
|
faraday_middleware
|
7
8
|
hashie
|
8
|
-
net-http-persistent (< 3)
|
9
9
|
rack (>= 1.4.5)
|
10
10
|
redis-namespace
|
11
|
-
|
11
|
+
typhoeus (~> 1.1)
|
12
12
|
wisper (~> 1.6.1)
|
13
13
|
|
14
14
|
GEM
|
@@ -24,18 +24,24 @@ GEM
|
|
24
24
|
codeclimate-test-reporter (1.0.3)
|
25
25
|
simplecov
|
26
26
|
coderay (1.1.1)
|
27
|
-
concurrent-ruby (1.0.
|
27
|
+
concurrent-ruby (1.0.5)
|
28
28
|
connection_pool (2.2.1)
|
29
29
|
crack (0.4.3)
|
30
30
|
safe_yaml (~> 1.0.0)
|
31
31
|
diff-lcs (1.2.5)
|
32
32
|
docile (1.1.5)
|
33
|
+
dogstatsd (2.0.0)
|
33
34
|
dotenv (2.1.1)
|
34
|
-
|
35
|
+
ethon (0.10.1)
|
36
|
+
ffi (>= 1.3.0)
|
37
|
+
faraday (0.11.0)
|
35
38
|
multipart-post (>= 1.2, < 3)
|
36
|
-
faraday_middleware (0.
|
39
|
+
faraday_middleware (0.11.0.1)
|
37
40
|
faraday (>= 0.7.4, < 1.0)
|
38
|
-
ffi (1.9.
|
41
|
+
ffi (1.9.17)
|
42
|
+
fork (1.0.1)
|
43
|
+
fork_break (0.1.4)
|
44
|
+
fork (= 1.0.1)
|
39
45
|
formatador (0.2.5)
|
40
46
|
guard (2.14.0)
|
41
47
|
formatador (>= 0.2.4)
|
@@ -51,7 +57,7 @@ GEM
|
|
51
57
|
guard (~> 2.1)
|
52
58
|
guard-compat (~> 1.1)
|
53
59
|
rspec (>= 2.99.0, < 4.0)
|
54
|
-
hashdiff (0.3.
|
60
|
+
hashdiff (0.3.2)
|
55
61
|
hashie (3.4.6)
|
56
62
|
json (2.0.2)
|
57
63
|
listen (3.1.5)
|
@@ -64,7 +70,6 @@ GEM
|
|
64
70
|
multi_json (1.12.1)
|
65
71
|
multipart-post (2.0.0)
|
66
72
|
nenv (0.3.0)
|
67
|
-
net-http-persistent (2.9.4)
|
68
73
|
notiffany (0.1.1)
|
69
74
|
nenv (~> 0.1)
|
70
75
|
shellany (~> 0.0)
|
@@ -72,11 +77,8 @@ GEM
|
|
72
77
|
coderay (~> 1.1.0)
|
73
78
|
method_source (~> 0.8.1)
|
74
79
|
slop (~> 3.4)
|
75
|
-
pry-byebug (3.4.2)
|
76
|
-
byebug (~> 9.0)
|
77
|
-
pry (~> 0.10)
|
78
80
|
psych (2.2.1)
|
79
|
-
public_suffix (2.0.
|
81
|
+
public_suffix (2.0.5)
|
80
82
|
rack (1.6.5)
|
81
83
|
rack-protection (1.5.3)
|
82
84
|
rack
|
@@ -127,11 +129,12 @@ GEM
|
|
127
129
|
tilt (>= 1.3, < 3)
|
128
130
|
slop (3.6.0)
|
129
131
|
thor (0.19.4)
|
130
|
-
thread (0.2.2)
|
131
132
|
tilt (2.0.5)
|
133
|
+
typhoeus (1.1.2)
|
134
|
+
ethon (>= 0.9.0)
|
132
135
|
vegas (0.1.11)
|
133
136
|
rack (>= 1.0.0)
|
134
|
-
webmock (2.3.
|
137
|
+
webmock (2.3.2)
|
135
138
|
addressable (>= 2.3.6)
|
136
139
|
crack (>= 0.3.2)
|
137
140
|
hashdiff
|
@@ -143,10 +146,13 @@ PLATFORMS
|
|
143
146
|
DEPENDENCIES
|
144
147
|
appraisal
|
145
148
|
bundler
|
149
|
+
byebug
|
146
150
|
codeclimate-test-reporter
|
151
|
+
dogstatsd
|
147
152
|
dotenv
|
153
|
+
fork_break
|
148
154
|
guard-rspec
|
149
|
-
pry
|
155
|
+
pry
|
150
156
|
psych
|
151
157
|
rack-test
|
152
158
|
rake
|
@@ -158,4 +164,4 @@ DEPENDENCIES
|
|
158
164
|
webmock
|
159
165
|
|
160
166
|
BUNDLED WITH
|
161
|
-
1.
|
167
|
+
1.14.5
|
data/README.md
CHANGED
@@ -238,6 +238,20 @@ session_create_response = response.sessions.create(email: 'test@test.com', passw
|
|
238
238
|
session_create_response.user.show(1)
|
239
239
|
```
|
240
240
|
|
241
|
+
The index method returns an Enumerable response to fetch all items in a paginated collection with the options of passing filters.
|
242
|
+
|
243
|
+
```
|
244
|
+
users = response.users
|
245
|
+
user_index_response = users.index(filters: {first_name: 'Jeff'})
|
246
|
+
total_users = user_index_response.total_users
|
247
|
+
|
248
|
+
puts "printing names of all #{total_users} users"
|
249
|
+
user_index_response.each do |user|
|
250
|
+
puts user.full_name
|
251
|
+
end
|
252
|
+
```
|
253
|
+
|
254
|
+
|
241
255
|
### HATEOAS materialisation
|
242
256
|
The client comes with optional HATEOAS response capabilities. They are optional, because drain itself doesn't need to use the HATEOAS
|
243
257
|
response capabilities. Whenever the client is used outside of the drain it is **strongly** advised to be used with the HATEOAS response capabilities.
|
@@ -315,3 +329,8 @@ as in `Receiver::Filter` for instance.
|
|
315
329
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
316
330
|
4. Push to the branch (`git push origin my-new-feature`)
|
317
331
|
5. Create new Pull Request
|
332
|
+
|
333
|
+
Do not bump version numbers on branches (a maintainer will do this when cutting
|
334
|
+
a release); but please do describe your changes in the `CHANGELOG` (at the top,
|
335
|
+
without a version number).
|
336
|
+
|
data/appraise
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# Run all appraisals, with all specified rubies
|
4
|
+
#
|
5
|
+
require 'yaml'
|
6
|
+
|
7
|
+
|
8
|
+
RUBIES = YAML.load_file('.travis.yml')['rvm']
|
9
|
+
APPRAISALS = `appraisal list`.strip.split(/\s+/)
|
10
|
+
|
11
|
+
# setup
|
12
|
+
RUBIES.each do |ruby|
|
13
|
+
ENV['RBENV_VERSION'] = ruby
|
14
|
+
system 'rbenv version'
|
15
|
+
system 'rbenv exec ruby -v'
|
16
|
+
system 'rbenv exec bundle check || rbenv exec bundle install'
|
17
|
+
system "rbenv exec appraisal install"
|
18
|
+
end
|
19
|
+
|
20
|
+
# tests
|
21
|
+
RUBIES.each do |ruby|
|
22
|
+
ENV['RBENV_VERSION'] = ruby
|
23
|
+
system 'rbenv exec ruby -v'
|
24
|
+
APPRAISALS.each do |variant|
|
25
|
+
puts "*** Ruby #{ruby} / variant #{variant}"
|
26
|
+
system "rbenv exec appraisal #{variant} rspec"
|
27
|
+
end
|
28
|
+
end
|
data/gemfiles/rails_3.gemfile
CHANGED
@@ -12,13 +12,13 @@ gem "codeclimate-test-reporter", :require => false
|
|
12
12
|
gem "simplecov"
|
13
13
|
gem "resque"
|
14
14
|
gem "sidekiq"
|
15
|
-
gem "
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
15
|
+
gem "guard-rspec", :require => false
|
16
|
+
gem "pry", :require => false
|
17
|
+
gem "byebug", :require => false
|
18
|
+
gem "rspec", :require => false
|
19
|
+
gem "appraisal", :require => false
|
20
|
+
gem "dogstatsd", :require => false
|
21
|
+
gem "fork_break", :require => false
|
22
|
+
gem "rails", "~> 3.2"
|
23
23
|
|
24
24
|
gemspec :path => "../"
|
@@ -1,25 +1,25 @@
|
|
1
1
|
PATH
|
2
|
-
remote:
|
2
|
+
remote: ..
|
3
3
|
specs:
|
4
|
-
routemaster-drain (2.
|
4
|
+
routemaster-drain (2.4.0)
|
5
|
+
concurrent-ruby
|
5
6
|
faraday (>= 0.9.0)
|
6
7
|
faraday_middleware
|
7
8
|
hashie
|
8
|
-
net-http-persistent (< 3)
|
9
9
|
rack (>= 1.4.5)
|
10
10
|
redis-namespace
|
11
|
-
|
11
|
+
typhoeus (~> 1.1)
|
12
12
|
wisper (~> 1.6.1)
|
13
13
|
|
14
14
|
GEM
|
15
15
|
remote: https://rubygems.org/
|
16
16
|
specs:
|
17
|
-
actionmailer (3.2.
|
18
|
-
actionpack (= 3.2.
|
17
|
+
actionmailer (3.2.22.5)
|
18
|
+
actionpack (= 3.2.22.5)
|
19
19
|
mail (~> 2.5.4)
|
20
|
-
actionpack (3.2.
|
21
|
-
activemodel (= 3.2.
|
22
|
-
activesupport (= 3.2.
|
20
|
+
actionpack (3.2.22.5)
|
21
|
+
activemodel (= 3.2.22.5)
|
22
|
+
activesupport (= 3.2.22.5)
|
23
23
|
builder (~> 3.0.0)
|
24
24
|
erubis (~> 2.7.0)
|
25
25
|
journey (~> 1.0.4)
|
@@ -27,18 +27,18 @@ GEM
|
|
27
27
|
rack-cache (~> 1.2)
|
28
28
|
rack-test (~> 0.6.1)
|
29
29
|
sprockets (~> 2.2.1)
|
30
|
-
activemodel (3.2.
|
31
|
-
activesupport (= 3.2.
|
30
|
+
activemodel (3.2.22.5)
|
31
|
+
activesupport (= 3.2.22.5)
|
32
32
|
builder (~> 3.0.0)
|
33
|
-
activerecord (3.2.
|
34
|
-
activemodel (= 3.2.
|
35
|
-
activesupport (= 3.2.
|
33
|
+
activerecord (3.2.22.5)
|
34
|
+
activemodel (= 3.2.22.5)
|
35
|
+
activesupport (= 3.2.22.5)
|
36
36
|
arel (~> 3.0.2)
|
37
37
|
tzinfo (~> 0.3.29)
|
38
|
-
activeresource (3.2.
|
39
|
-
activemodel (= 3.2.
|
40
|
-
activesupport (= 3.2.
|
41
|
-
activesupport (3.2.
|
38
|
+
activeresource (3.2.22.5)
|
39
|
+
activemodel (= 3.2.22.5)
|
40
|
+
activesupport (= 3.2.22.5)
|
41
|
+
activesupport (3.2.22.5)
|
42
42
|
i18n (~> 0.6, >= 0.6.4)
|
43
43
|
multi_json (~> 1.0)
|
44
44
|
addressable (2.5.0)
|
@@ -50,24 +50,30 @@ GEM
|
|
50
50
|
arel (3.0.3)
|
51
51
|
builder (3.0.4)
|
52
52
|
byebug (9.0.6)
|
53
|
-
codeclimate-test-reporter (1.0.
|
53
|
+
codeclimate-test-reporter (1.0.6)
|
54
54
|
simplecov
|
55
55
|
coderay (1.1.1)
|
56
|
-
concurrent-ruby (1.0.
|
56
|
+
concurrent-ruby (1.0.5)
|
57
57
|
connection_pool (2.2.1)
|
58
58
|
crack (0.4.3)
|
59
59
|
safe_yaml (~> 1.0.0)
|
60
|
-
diff-lcs (1.
|
60
|
+
diff-lcs (1.3)
|
61
61
|
docile (1.1.5)
|
62
|
-
|
62
|
+
dogstatsd (2.0.0)
|
63
|
+
dotenv (2.2.0)
|
63
64
|
erubis (2.7.0)
|
64
|
-
|
65
|
+
ethon (0.10.1)
|
66
|
+
ffi (>= 1.3.0)
|
67
|
+
faraday (0.11.0)
|
65
68
|
multipart-post (>= 1.2, < 3)
|
66
|
-
faraday_middleware (0.
|
69
|
+
faraday_middleware (0.11.0.1)
|
67
70
|
faraday (>= 0.7.4, < 1.0)
|
68
|
-
ffi (1.9.
|
71
|
+
ffi (1.9.17)
|
72
|
+
fork (1.0.1)
|
73
|
+
fork_break (0.1.4)
|
74
|
+
fork (= 1.0.1)
|
69
75
|
formatador (0.2.5)
|
70
|
-
guard (2.14.
|
76
|
+
guard (2.14.1)
|
71
77
|
formatador (>= 0.2.4)
|
72
78
|
listen (>= 2.7, < 4.0)
|
73
79
|
lumberjack (~> 1.0)
|
@@ -81,17 +87,17 @@ GEM
|
|
81
87
|
guard (~> 2.1)
|
82
88
|
guard-compat (~> 1.1)
|
83
89
|
rspec (>= 2.99.0, < 4.0)
|
84
|
-
hashdiff (0.3.
|
90
|
+
hashdiff (0.3.2)
|
85
91
|
hashie (3.4.6)
|
86
92
|
hike (1.2.3)
|
87
|
-
i18n (0.
|
93
|
+
i18n (0.8.1)
|
88
94
|
journey (1.0.4)
|
89
|
-
json (1.8.
|
95
|
+
json (1.8.6)
|
90
96
|
listen (3.1.5)
|
91
97
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
92
98
|
rb-inotify (~> 0.9, >= 0.9.7)
|
93
99
|
ruby_dep (~> 1.2)
|
94
|
-
lumberjack (1.0.
|
100
|
+
lumberjack (1.0.11)
|
95
101
|
mail (2.5.4)
|
96
102
|
mime-types (~> 1.16)
|
97
103
|
treetop (~> 1.4.8)
|
@@ -101,7 +107,6 @@ GEM
|
|
101
107
|
multi_json (1.12.1)
|
102
108
|
multipart-post (2.0.0)
|
103
109
|
nenv (0.3.0)
|
104
|
-
net-http-persistent (2.9.4)
|
105
110
|
notiffany (0.1.1)
|
106
111
|
nenv (~> 0.1)
|
107
112
|
shellany (~> 0.0)
|
@@ -110,13 +115,10 @@ GEM
|
|
110
115
|
coderay (~> 1.1.0)
|
111
116
|
method_source (~> 0.8.1)
|
112
117
|
slop (~> 3.4)
|
113
|
-
|
114
|
-
|
115
|
-
pry (~> 0.10)
|
116
|
-
psych (2.2.2)
|
117
|
-
public_suffix (2.0.4)
|
118
|
+
psych (2.2.4)
|
119
|
+
public_suffix (2.0.5)
|
118
120
|
rack (1.4.7)
|
119
|
-
rack-cache (1.
|
121
|
+
rack-cache (1.7.0)
|
120
122
|
rack (>= 0.4)
|
121
123
|
rack-protection (1.5.3)
|
122
124
|
rack
|
@@ -124,31 +126,31 @@ GEM
|
|
124
126
|
rack
|
125
127
|
rack-test (0.6.3)
|
126
128
|
rack (>= 1.0)
|
127
|
-
rails (3.2.
|
128
|
-
actionmailer (= 3.2.
|
129
|
-
actionpack (= 3.2.
|
130
|
-
activerecord (= 3.2.
|
131
|
-
activeresource (= 3.2.
|
132
|
-
activesupport (= 3.2.
|
129
|
+
rails (3.2.22.5)
|
130
|
+
actionmailer (= 3.2.22.5)
|
131
|
+
actionpack (= 3.2.22.5)
|
132
|
+
activerecord (= 3.2.22.5)
|
133
|
+
activeresource (= 3.2.22.5)
|
134
|
+
activesupport (= 3.2.22.5)
|
133
135
|
bundler (~> 1.0)
|
134
|
-
railties (= 3.2.
|
135
|
-
railties (3.2.
|
136
|
-
actionpack (= 3.2.
|
137
|
-
activesupport (= 3.2.
|
136
|
+
railties (= 3.2.22.5)
|
137
|
+
railties (3.2.22.5)
|
138
|
+
actionpack (= 3.2.22.5)
|
139
|
+
activesupport (= 3.2.22.5)
|
138
140
|
rack-ssl (~> 1.3.2)
|
139
141
|
rake (>= 0.8.7)
|
140
142
|
rdoc (~> 3.4)
|
141
143
|
thor (>= 0.14.6, < 2.0)
|
142
144
|
rake (12.0.0)
|
143
145
|
rb-fsevent (0.9.8)
|
144
|
-
rb-inotify (0.9.
|
146
|
+
rb-inotify (0.9.8)
|
145
147
|
ffi (>= 0.5.0)
|
146
148
|
rdoc (3.12.2)
|
147
149
|
json (~> 1.4)
|
148
|
-
redis (3.3.
|
149
|
-
redis-namespace (1.5.
|
150
|
+
redis (3.3.3)
|
151
|
+
redis-namespace (1.5.3)
|
150
152
|
redis (~> 3.0, >= 3.0.4)
|
151
|
-
resque (1.
|
153
|
+
resque (1.27.2)
|
152
154
|
mono_logger (~> 1.0)
|
153
155
|
multi_json (~> 1.0)
|
154
156
|
redis-namespace (~> 1.3)
|
@@ -170,12 +172,12 @@ GEM
|
|
170
172
|
ruby_dep (1.5.0)
|
171
173
|
safe_yaml (1.0.4)
|
172
174
|
shellany (0.0.1)
|
173
|
-
sidekiq (4.2.
|
175
|
+
sidekiq (4.2.9)
|
174
176
|
concurrent-ruby (~> 1.0)
|
175
177
|
connection_pool (~> 2.2, >= 2.2.0)
|
176
178
|
rack-protection (>= 1.5.0)
|
177
179
|
redis (~> 3.2, >= 3.2.1)
|
178
|
-
simplecov (0.
|
180
|
+
simplecov (0.13.0)
|
179
181
|
docile (~> 1.1.0)
|
180
182
|
json (>= 1.8, < 3)
|
181
183
|
simplecov-html (~> 0.10.0)
|
@@ -191,15 +193,16 @@ GEM
|
|
191
193
|
rack (~> 1.0)
|
192
194
|
tilt (~> 1.1, != 1.3.0)
|
193
195
|
thor (0.19.4)
|
194
|
-
thread (0.2.2)
|
195
196
|
tilt (1.4.1)
|
196
197
|
treetop (1.4.15)
|
197
198
|
polyglot
|
198
199
|
polyglot (>= 0.3.1)
|
200
|
+
typhoeus (1.1.2)
|
201
|
+
ethon (>= 0.9.0)
|
199
202
|
tzinfo (0.3.52)
|
200
203
|
vegas (0.1.11)
|
201
204
|
rack (>= 1.0.0)
|
202
|
-
webmock (2.3.
|
205
|
+
webmock (2.3.2)
|
203
206
|
addressable (>= 2.3.6)
|
204
207
|
crack (>= 0.3.2)
|
205
208
|
hashdiff
|
@@ -211,13 +214,16 @@ PLATFORMS
|
|
211
214
|
DEPENDENCIES
|
212
215
|
appraisal
|
213
216
|
bundler
|
217
|
+
byebug
|
214
218
|
codeclimate-test-reporter
|
219
|
+
dogstatsd
|
215
220
|
dotenv
|
221
|
+
fork_break
|
216
222
|
guard-rspec
|
217
|
-
pry
|
223
|
+
pry
|
218
224
|
psych
|
219
225
|
rack-test
|
220
|
-
rails (
|
226
|
+
rails (~> 3.2)
|
221
227
|
rake
|
222
228
|
resque
|
223
229
|
routemaster-drain!
|
@@ -227,4 +233,4 @@ DEPENDENCIES
|
|
227
233
|
webmock
|
228
234
|
|
229
235
|
BUNDLED WITH
|
230
|
-
1.
|
236
|
+
1.14.5
|