letsencrypt_heroku 0.2.5 → 0.2.6

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: 78fadc5a5aec359d08138a78a7a039ffc7deb717
4
- data.tar.gz: 056129f2022c3eb201ead223e337fe63ed320040
3
+ metadata.gz: 4261b371d0ddd53423760a962cbcc729458dd21f
4
+ data.tar.gz: 96900750e284a3c4fa1611b7efd20cbd0e8e48ef
5
5
  SHA512:
6
- metadata.gz: e4113dbb5600459a47515c60659cbd88d7d96ff2c7fa2e920ba34131321c8b93d5c431c4f0f972f96fae2c9afaeaa1531c200836de9c1f3c18fce8473f51fba3
7
- data.tar.gz: a5b8bb5121731a49d4e62046011cb1ed660945e6a065d20d7f71cf7cb88833b19f37588e4f23ce6ff3859dfd3496dcf1942b8c75ee83b4549611fae51d8dcea5
6
+ metadata.gz: c0898de4da44e021b99727fc440d2103ee880b9ae2c99bac34bb7176c1983574b7caf3ebb9bc5968c79317a2cd9a85608184c7a4822fa17960e0a1d9eb679a48
7
+ data.tar.gz: 4ed4b334314b157d3c844311301ced9e24596329db7d1ba382cadb5c208c3883d5a2466b7a04f7a7df34b6c7150e2b9162a41370e6e15b21d2438d0d11dd6554
@@ -7,7 +7,7 @@ module LetsencryptHeroku
7
7
  end
8
8
 
9
9
  def perform
10
- [PrepareConfig, CheckPreconditions, SetupClient, AuthorizeDomains, UpdateCertificates].each do |klass|
10
+ [PrepareConfig, SetupClient, AuthorizeDomains, UpdateCertificates].each do |klass|
11
11
  klass.new.perform(context)
12
12
  end
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module LetsencryptHeroku
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: letsencrypt_heroku
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johannes Opper
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-23 00:00:00.000000000 Z
11
+ date: 2016-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rainbow
@@ -131,7 +131,6 @@ files:
131
131
  - lib/letsencrypt_heroku/config_builder.rb
132
132
  - lib/letsencrypt_heroku/process.rb
133
133
  - lib/letsencrypt_heroku/process/authorize_domains.rb
134
- - lib/letsencrypt_heroku/process/check_preconditions.rb
135
134
  - lib/letsencrypt_heroku/process/prepare_config.rb
136
135
  - lib/letsencrypt_heroku/process/setup_client.rb
137
136
  - lib/letsencrypt_heroku/process/update_certificates.rb
@@ -161,4 +160,3 @@ signing_key:
161
160
  specification_version: 4
162
161
  summary: Setup SSL for heroku with letsencrypt
163
162
  test_files: []
164
- has_rdoc:
@@ -1,15 +0,0 @@
1
- class LetsencryptHeroku::Process
2
- class CheckPreconditions
3
- include LetsencryptHeroku::Tools
4
-
5
- def perform(context)
6
- banner 'Running for:', context.config.domains.join(', ')
7
- output 'Prepare SSL endpoint' do
8
- execute "heroku labs:enable http-sni --app #{context.config.heroku_certificate_app}"
9
- execute 'heroku plugins:install heroku-certs'
10
- end
11
- end
12
- end
13
- end
14
-
15
-