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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ebce6e76c02bf28184ac1aa7c7485eb683876014bbb96fa6fb9484a043d6fae
4
- data.tar.gz: 49ef4f79c9e5f0321a130d4f6e8af242d808b7b458af73e30a5feed34df8702a
3
+ metadata.gz: d27b95a9190f4952c9fab2fe69ba70dd1baf95ef81fb139442ab34c90950de7f
4
+ data.tar.gz: d93fe018baf3a3d200a60ae7c4087539122aa554316ce058cfd7bf29897bd79e
5
5
  SHA512:
6
- metadata.gz: 3c345acf531838db441bd4391f4db3973bc9f05f34c47edd07f8694ceb488458770579ef67b31638c69e3d2687f21f4f49d8370702195cc7007a9d31e754d53d
7
- data.tar.gz: e19a5b314756d03d496bf0e7a16851c96baea97d710e107bf4d32a7f78cc7c520746099ab1f768b43716ad4c2d9dacb3ec01c2a286313746e6d2c7320357b599
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.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.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.7.1)
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RailsAutoscale
4
4
  module Resque
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.1"
6
6
  end
7
7
  end
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.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-07 00:00:00.000000000 Z
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