rails-autoscale-resque 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +6 -0
- data/Gemfile.lock +5 -3
- data/lib/rails_autoscale/resque/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d27b95a9190f4952c9fab2fe69ba70dd1baf95ef81fb139442ab34c90950de7f
|
4
|
+
data.tar.gz: d93fe018baf3a3d200a60ae7c4087539122aa554316ce058cfd7bf29897bd79e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '009b5591f8bc54291ab21b4910bac967901c43ade54556a949afd9d60228b044f903deb9fca2e9dcd0f8b75f0ff7a798025fb5eee3d3d09e2587cd109623c16f'
|
7
|
+
data.tar.gz: 3efb5e847a99b780b1bf85e1e55477836f70f897924bdf4fc732c22fdd0f4f1ebe21e50a07f63972752017c3cccfa457fb8170266a9d78fe3505a6e63d3769d4
|
data/Gemfile
CHANGED
@@ -5,3 +5,9 @@ gemspec
|
|
5
5
|
gem "rails-autoscale-core", path: "../rails-autoscale-core"
|
6
6
|
gem "minitest"
|
7
7
|
gem "rake"
|
8
|
+
|
9
|
+
# Lock to known working versions to keep tests passing.
|
10
|
+
# Without this, `bundle install` will update `Gemfile.lock` due to
|
11
|
+
# https://github.com/rubygems/bundler/issues/6069
|
12
|
+
gem "resque", "~> 2.2.0"
|
13
|
+
gem "redis", "~> 4.0"
|
data/Gemfile.lock
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../rails-autoscale-core
|
3
3
|
specs:
|
4
|
-
rails-autoscale-core (1.0.
|
4
|
+
rails-autoscale-core (1.0.1)
|
5
5
|
|
6
6
|
PATH
|
7
7
|
remote: .
|
8
8
|
specs:
|
9
|
-
rails-autoscale-resque (1.0.
|
9
|
+
rails-autoscale-resque (1.0.1)
|
10
10
|
rails-autoscale-core
|
11
11
|
resque (>= 2.0)
|
12
12
|
|
@@ -22,7 +22,7 @@ GEM
|
|
22
22
|
rack-protection (2.2.2)
|
23
23
|
rack
|
24
24
|
rake (13.0.6)
|
25
|
-
redis (4.
|
25
|
+
redis (4.8.0)
|
26
26
|
redis-namespace (1.9.0)
|
27
27
|
redis (>= 4)
|
28
28
|
resque (2.2.1)
|
@@ -49,6 +49,8 @@ DEPENDENCIES
|
|
49
49
|
rails-autoscale-core!
|
50
50
|
rails-autoscale-resque!
|
51
51
|
rake
|
52
|
+
redis (~> 4.0)
|
53
|
+
resque (~> 2.2.0)
|
52
54
|
|
53
55
|
BUNDLED WITH
|
54
56
|
2.3.9
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-autoscale-resque
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam McCrea
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-09-
|
12
|
+
date: 2022-09-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails-autoscale-core
|