workless_revived 2.0.1 → 2.1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/lib/workless/scalers/base.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2707d1b9b1ade14f2b18d1b09282669a9e4378e5
|
4
|
+
data.tar.gz: bfe6060386ba4e4aca7de84fa1a0768c7c23b091
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 720f6db7bb1c8a4829b4f6f555856d2a3f25d065ebbd10ad10b5636f03a432c6f0e65980325c987936fe6387aad2135f52700470bc80f4a0066ba4e6458a1f6b
|
7
|
+
data.tar.gz: 48893d95619cdbe51fb1e86751f94e9263f65577af47b42b88d9f1d11163a44e23e2031356af386c3bcb1742803a3f4558b48e2098d77660fc34a7bb56c1a11c
|
data/README.md
CHANGED
@@ -14,8 +14,12 @@ By adding the gem to your project and configuring our Heroku app with some confi
|
|
14
14
|
:warning: **[The Legacy API will be sunset on April 15th, 2017](https://devcenter.heroku.com/changelog-items/862)** :warning:
|
15
15
|
Please upgrade to version 2.0.0 as soon as you can. Version 2.0.0 is released on March 1st, 2017.
|
16
16
|
|
17
|
+
## Heroku Stack Heroku-16 update
|
18
|
+
Version 2.1.0 changed the config for setting the Heroku API key. This will now reside in WORKLESS_API_KEY. Please change this key in your Heroku setup when upgrading this gem!
|
19
|
+
|
17
20
|
## Updates
|
18
21
|
|
22
|
+
* Version 2.1.0 CHANGE! In order to be compatible with the latest Heroku Stack (see [#11](https://github.com/davidakachaos/workless_revived/issues/11) by @unmultimedio ) I have changed the name for the HEROKU_API_KEY variable to WORKLESS_API_KEY
|
19
23
|
* Version 2.0.0 Updated to use latest version of the Heroku API. Drops support for old style Heroku
|
20
24
|
* Version 1.3.0 DROPS SUPPORT FOR OLDER RUBY AND RAILS VERSIONS!
|
21
25
|
* Version 1.2.5 Added middleware to check on delayed jobs, fixed Rails 5 support
|
@@ -38,6 +42,7 @@ Ruby | Rails | Delayed Job
|
|
38
42
|
---------- | ------ | -----
|
39
43
|
2.2.5 | 4.2 | 2.1.4
|
40
44
|
2.3.1 | 5.0 | 4.1.2
|
45
|
+
2.4.1 | 5.1 | 4.1.3
|
41
46
|
|
42
47
|
## Installation
|
43
48
|
|
@@ -63,7 +68,7 @@ If you don't specify delayed_job in your Gemfile workless will bring it in, most
|
|
63
68
|
Add your Heroku app name / [API key](https://devcenter.heroku.com/articles/authentication) as config vars to your Heroku instance.
|
64
69
|
|
65
70
|
<pre>
|
66
|
-
heroku config:add
|
71
|
+
heroku config:add WORKLESS_API_KEY=yourapikey APP_NAME=yourherokuappname
|
67
72
|
</pre>
|
68
73
|
|
69
74
|
## Failing Jobs
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workless_revived
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.1
|
4
|
+
version: 2.1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- davidakachaos
|
@@ -101,7 +101,10 @@ files:
|
|
101
101
|
homepage: http://github.com/davidakachaos/workless_revived
|
102
102
|
licenses: []
|
103
103
|
metadata: {}
|
104
|
-
post_install_message:
|
104
|
+
post_install_message: |2
|
105
|
+
|
106
|
+
Workless Revived 2.1.0 introduces a backwards-incompatible change!
|
107
|
+
Please update your Heroku config to use WORKLESS_API_KEY instead of HEROKU_API_KEY!!
|
105
108
|
rdoc_options: []
|
106
109
|
require_paths:
|
107
110
|
- lib
|