le_ssl 0.0.4.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 +164 -0
- data/lib/le_ssl.rb +3 -0
- data/lib/le_ssl/dns.rb +29 -0
- data/lib/le_ssl/manager.rb +44 -13
- data/lib/le_ssl/version.rb +1 -1
- data/test/dummy/config/environments/test.rb +2 -2
- data/test/dummy/log/test.log +1042 -127
- metadata +7 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: le_ssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.1'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Feistmantl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.4.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: 0.4.0
|
41
41
|
description: Le SSL makes it easy to obtain certificates from Let's Encrypt
|
42
42
|
email:
|
43
43
|
- tobias@feistmantl.io
|
@@ -46,8 +46,10 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- MIT-LICENSE
|
49
|
+
- README.md
|
49
50
|
- Rakefile
|
50
51
|
- lib/le_ssl.rb
|
52
|
+
- lib/le_ssl/dns.rb
|
51
53
|
- lib/le_ssl/errors.rb
|
52
54
|
- lib/le_ssl/manager.rb
|
53
55
|
- lib/le_ssl/version.rb
|
@@ -111,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
113
|
version: '0'
|
112
114
|
requirements: []
|
113
115
|
rubyforge_project:
|
114
|
-
rubygems_version: 2.
|
116
|
+
rubygems_version: 2.5.1
|
115
117
|
signing_key:
|
116
118
|
specification_version: 4
|
117
119
|
summary: Le SSL makes it easy to obtain certificates from Let's Encrypt
|
@@ -155,4 +157,3 @@ test_files:
|
|
155
157
|
- test/le_ssl/manager_test.rb
|
156
158
|
- test/le_ssl_test.rb
|
157
159
|
- test/test_helper.rb
|
158
|
-
has_rdoc:
|