forked from mipmip/acmesmith-http-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacmesmith-http-path.gemspec
28 lines (23 loc) · 1.08 KB
/
acmesmith-http-path.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'acmesmith-http-path/version'
Gem::Specification.new do |spec|
spec.name = "acmesmith-http-path"
spec.version = AcmesmithHttpPath::VERSION
spec.authors = ["Pim Snel"]
spec.email = ["[email protected]"]
spec.summary = %q{AcmeSmith ChallengeResponders plugin for validating by http-01}
spec.description = %q{AcmeSmith ChallengeResponders plugin for validating with letsencrypt by http-01 on a local machine}
spec.homepage = "https://github.com/mipmip/acmesmith-http-path"
spec.license = "MIT"
spec.files = Dir["bin,lib}/**/*"] + ["Rakefile", "README.md"]
spec.test_files = Dir["test/**/*"]
spec.require_paths = ["lib"]
spec.add_dependency "acmesmith"
spec.add_development_dependency "bundler", "~> 1.13"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "simplecov", "~> 0.12"
spec.add_development_dependency "pry"
end