heroku_ssl 0.7.1 → 0.7.3
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/lib/heroku_ssl/version.rb +1 -1
- data/lib/tasks/heroku_ssl_tasks.rake +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5c1633aef935dadaf791356c2e91646e66fd695
|
4
|
+
data.tar.gz: 29cbc984e2bfb32f713cae6cdc89f21983b251dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5caeef03b9fef32cabb698e77fb05c6a915ecb198ffc5757d410f920368e1823e4259a0142b31239e14fdcbd1d686cedd8a8386032e904db34a99ee6ac81892
|
7
|
+
data.tar.gz: b81d1e866d45510db6000c0654caf0cd0113be593bf873fbeb81bc4a503a27f5f404eed896af92a265cee2a36550e1a9e70f17c318984eb2658c005dcad6fa2f
|
data/lib/heroku_ssl/version.rb
CHANGED
@@ -98,7 +98,7 @@ namespace :heroku_ssl do
|
|
98
98
|
|
99
99
|
new_email = nil
|
100
100
|
while new_email.blank?
|
101
|
-
STDOUT.puts "Enter your email#{default_prompt}: "
|
101
|
+
STDOUT.puts "Enter your email (used to notify you of expiration)#{default_prompt}: "
|
102
102
|
new_email = STDIN.gets
|
103
103
|
|
104
104
|
if new_email.blank?
|
@@ -164,7 +164,7 @@ namespace :heroku_ssl do
|
|
164
164
|
def get_app
|
165
165
|
return @app if @app.present?
|
166
166
|
|
167
|
-
@apps = @apps || heroku_run('apps').split("\n")
|
167
|
+
@apps = @apps || heroku_run('apps').split("\n").map(&:split).map(&:first).select(&:present?)
|
168
168
|
remotes = `git remote -v`.split("\n").map do |r|
|
169
169
|
r.split("\t").last
|
170
170
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: heroku_ssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kai Marshland
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|