forked from elct9620/rails-letsencrypt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrails-letsencrypt-mongoid.gemspec
33 lines (27 loc) · 1.2 KB
/
rails-letsencrypt-mongoid.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
29
30
31
32
33
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "letsencrypt/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "rails-letsencrypt-mongoid"
s.version = LetsEncrypt::VERSION
s.authors = ["蒼時弦也", "Nathan Broadbent"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/elct9620/rails-letsencrypt"
s.summary = "The Let's Encrypt certificate manager for rails (Mongoid fork)"
s.description = "The Let's Encrypt certificate manager for rails (Mongoid fork)"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.require_paths = ["lib"]
s.add_dependency "rails", ">= 4.0"
s.add_dependency "acme-client", "~> 2.0.0"
s.add_dependency "redis"
s.add_dependency "mongoid", ">= 4.0"
s.add_development_dependency "appraisal"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "database_cleaner"
s.add_development_dependency "simplecov"
s.add_development_dependency "coveralls"
s.add_development_dependency "codeclimate-test-reporter"
end