lumberg 2.0.0.pre9 → 2.0.0.pre12
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 +7 -2
- data/lib/lumberg/format_whm.rb +2 -1
- data/lib/lumberg/version.rb +1 -1
- data/lib/lumberg/whm/cert.rb +12 -0
- data/lib/lumberg/whostmgr/ssl.rb +27 -0
- data/spec/vcr_cassettes/whm/cert/fetch_ssl_vhosts.yml +44 -0
- data/spec/vcr_cassettes/whostmgr/ssl/create.yml +219 -0
- data/spec/whm/cert_spec.rb +11 -0
- data/spec/whostmgr/ssl_spec.rb +21 -0
- metadata +395 -394
- data/.gitignore +0 -10
- data/.rspec +0 -2
- data/.travis.yml +0 -12
- data/lumberg.gemspec +0 -31
data/.gitignore
DELETED
data/.rspec
DELETED
data/.travis.yml
DELETED
data/lumberg.gemspec
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
$:.push File.expand_path("../lib", __FILE__)
|
3
|
-
require "lumberg/version"
|
4
|
-
|
5
|
-
Gem::Specification.new do |s|
|
6
|
-
s.name = "lumberg"
|
7
|
-
s.version = Lumberg::VERSION
|
8
|
-
s.platform = Gem::Platform::RUBY
|
9
|
-
s.authors = ["Justin Mazzi"]
|
10
|
-
s.email = ["jmazzi@site5.com"]
|
11
|
-
s.homepage = ""
|
12
|
-
s.summary = %q{Ruby library for the WHM & cPanel API}
|
13
|
-
s.description = %q{Ruby library for the WHM & cPanel API; It's not a half day or anything like that}
|
14
|
-
s.license = 'MIT'
|
15
|
-
|
16
|
-
s.rubyforge_project = "lumberg"
|
17
|
-
|
18
|
-
s.add_runtime_dependency 'json', '~> 1.7.3'
|
19
|
-
s.add_runtime_dependency 'faraday', '~> 0.8.8'
|
20
|
-
s.add_runtime_dependency 'faraday_middleware', '~> 0.9.0'
|
21
|
-
s.add_runtime_dependency('jruby-openssl', '~> 0.7.3') if RUBY_PLATFORM == 'java'
|
22
|
-
s.add_development_dependency 'rspec', '~> 2.10.0'
|
23
|
-
s.add_development_dependency 'webmock', '~> 1.8.7'
|
24
|
-
s.add_development_dependency 'vcr', '~> 2.4.0'
|
25
|
-
s.add_development_dependency 'rake', '~> 0.9.2.2'
|
26
|
-
|
27
|
-
s.files = `git ls-files`.split("\n")
|
28
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
29
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
30
|
-
s.require_paths = ["lib"]
|
31
|
-
end
|