forked from datamolecule/letsencrypt_http_challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathletsencrypt_http_challenge.gemspec
More file actions
23 lines (18 loc) · 1.04 KB
/
letsencrypt_http_challenge.gemspec
File metadata and controls
23 lines (18 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "letsencrypt_http_challenge/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "letsencrypt_http_challenge"
s.version = LetsencryptHttpChallenge::VERSION
s.authors = ["Luc Lussier"]
s.email = ["luc.lussier@gmail.com"]
s.homepage = "https://github.com/datamolecule/letsencrypt_http_challenge"
s.summary = "Answer the Let's Encrypt ACME http challenge"
s.description = "A Rails engine that provides a response mechanism for Let's Encrypt ACME - Simple HTTP - Identifier Validation Challenges on 12 factor apps like those deployed on Heroku as well as the rake task to generate the certificate from your local machine."
s.license = "MIT"
s.files = Dir["{app,bin,config,lib}/**/*", "Gemfile", "LICENSE", "README.md", "Rakefile", "letsencrypt_http_challenge.gemspec"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 4.1"
s.add_dependency "acme-client", "~> 0.3.0"
end