rails-autoscale-resque 1.0.0 → 1.0.2

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: 30496819e9a775720e3c8171685f9603049c87c32e620c08c3ef3fd930034fe5
4
+ data.tar.gz: 4dbeb4bde57965ef273493a45c8d0b859f5db26ed3512f2e846237d5d20c90c8
5
5
  SHA512:
6
- metadata.gz: 3c345acf531838db441bd4391f4db3973bc9f05f34c47edd07f8694ceb488458770579ef67b31638c69e3d2687f21f4f49d8370702195cc7007a9d31e754d53d
7
- data.tar.gz: e19a5b314756d03d496bf0e7a16851c96baea97d710e107bf4d32a7f78cc7c520746099ab1f768b43716ad4c2d9dacb3ec01c2a286313746e6d2c7320357b599
6
+ metadata.gz: 3f3b47d72657a3d38e80a3056aeb3cb86fa07aae317b367d39d5b8c78505fe3ea3561cf4c3805ce05148aaf1e1af3ed15cc1f7a6240aa1d383117de9e1dfd20b
7
+ data.tar.gz: ec7c014729abc692f5c7f3981f2f32295b946649b36b161caa76c62fb8d6b4fc3efb536434817c4c632f17c26253145c6ebe9b5c067869f7c6a2d747ad3ab06b
data/Gemfile CHANGED
@@ -5,3 +5,10 @@ gemspec
5
5
  gem "rails-autoscale-core", path: "../rails-autoscale-core"
6
6
  gem "minitest"
7
7
  gem "rake"
8
+ gem "debug"
9
+
10
+ # Lock to known working versions to keep tests passing.
11
+ # Without this, `bundle install` will update `Gemfile.lock` due to
12
+ # https://github.com/rubygems/bundler/issues/6069
13
+ gem "resque", "~> 2.2.0"
14
+ gem "redis", "~> 4.0"
data/Gemfile.lock CHANGED
@@ -1,18 +1,24 @@
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.2)
5
5
 
6
6
  PATH
7
7
  remote: .
8
8
  specs:
9
- rails-autoscale-resque (1.0.0)
9
+ rails-autoscale-resque (1.0.2)
10
10
  rails-autoscale-core
11
11
  resque (>= 2.0)
12
12
 
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
+ debug (1.6.2)
17
+ irb (>= 1.3.6)
18
+ reline (>= 0.3.1)
19
+ io-console (0.5.11)
20
+ irb (1.4.1)
21
+ reline (>= 0.3.0)
16
22
  minitest (5.15.0)
17
23
  mono_logger (1.1.1)
18
24
  multi_json (1.15.0)
@@ -22,9 +28,11 @@ GEM
22
28
  rack-protection (2.2.2)
23
29
  rack
24
30
  rake (13.0.6)
25
- redis (4.7.1)
31
+ redis (4.8.0)
26
32
  redis-namespace (1.9.0)
27
33
  redis (>= 4)
34
+ reline (0.3.1)
35
+ io-console (~> 0.5)
28
36
  resque (2.2.1)
29
37
  mono_logger (~> 1.0)
30
38
  multi_json (~> 1.0)
@@ -45,10 +53,13 @@ PLATFORMS
45
53
  x86_64-linux
46
54
 
47
55
  DEPENDENCIES
56
+ debug
48
57
  minitest
49
58
  rails-autoscale-core!
50
59
  rails-autoscale-resque!
51
60
  rake
61
+ redis (~> 4.0)
62
+ resque (~> 2.2.0)
52
63
 
53
64
  BUNDLED WITH
54
65
  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.2"
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.2
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-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails-autoscale-core