forked from LacunaSoftware/PkiExpressRuby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpki_express.gemspec
More file actions
27 lines (24 loc) · 1.15 KB
/
pki_express.gemspec
File metadata and controls
27 lines (24 loc) · 1.15 KB
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
# coding: utf-8
require_relative 'lib/pki_express/version'
Gem::Specification.new do |spec|
spec.name = 'pki_express'
spec.version = PkiExpress::VERSION
spec.license = 'MIT'
spec.authors = ['Ismael Medeiros']
spec.email = %w{ismaelm@lacunasoftware.com}
spec.homepage = 'http://docs.lacunasoftware.com/en-us/articles/pki-express'
spec.summary = 'Gem for using PKI Express on Ruby'
spec.description = 'Classes to use Lacuna Software\'s PKI Express'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/LacunaSoftware/PkiExpressRuby/issues',
'changelog_uri' => 'https://github.com/LacunaSoftware/PkiExpressRuby/blob/develop/CHANGELOG.md',
'documentation_uri' => 'http://docs.lacunasoftware.com/en-us/articles/pki-express',
'source_code_uri' => 'https://github.com/LacunaSoftware/PkiExpressRuby'
}
spec.add_development_dependency 'bundler', '~> 2.3'
spec.add_development_dependency 'rake', '~> 13'
end