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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb579c0046045fea4f8bca6e6b76a6c00318b576
4
- data.tar.gz: 90a5cca834f4582526e0c5e732ddadf0cac4af3c
3
+ metadata.gz: 2707d1b9b1ade14f2b18d1b09282669a9e4378e5
4
+ data.tar.gz: bfe6060386ba4e4aca7de84fa1a0768c7c23b091
5
5
  SHA512:
6
- metadata.gz: 3b49cbde98a79b69c6844e7af8ead1ab027437b97c6ef00147a217ec1956a52f9480ed6e226c5846519423cf886db04b79d7a82371ea00a92e77492593fea4dd
7
- data.tar.gz: b400c53df40efd682f76af874cd7fe394472ccb4127b232a797015bfaf13516086c2c3bd4f1c050eeea0135f5cd813cde8b8c3c66f83e48c32f82b65c922ed37
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 HEROKU_API_KEY=yourapikey APP_NAME=yourherokuappname
71
+ heroku config:add WORKLESS_API_KEY=yourapikey APP_NAME=yourherokuappname
67
72
  </pre>
68
73
 
69
74
  ## Failing Jobs
@@ -13,7 +13,7 @@ module Delayed
13
13
 
14
14
  module HerokuClient
15
15
  def client
16
- @client ||= ::PlatformAPI.connect(ENV['HEROKU_API_KEY'])
16
+ @client ||= ::PlatformAPI.connect(ENV['WORKLESS_API_KEY'])
17
17
  end
18
18
  end
19
19
  end
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