-
Notifications
You must be signed in to change notification settings - Fork 66
/
xmldsig.gemspec
22 lines (18 loc) · 913 Bytes
/
xmldsig.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/xmldsig/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["benoist"]
gem.email = ["[email protected]"]
gem.description = %q{This gem is a (partial) implementation of the XMLDsig specification}
gem.summary = %q{This gem is a (partial) implementation of the XMLDsig specification (http://www.w3.org/TR/xmldsig-core)}
gem.homepage = "https://github.com/benoist/xmldsig"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "xmldsig"
gem.license = 'MIT'
gem.require_paths = ["lib"]
gem.version = Xmldsig::VERSION
gem.required_ruby_version = '>= 1.9.2'
gem.add_dependency("nokogiri", '>= 1.6.8', '< 2.0.0')
end