Sha256: 69abb1781a01f411e090fbf68e5fa85502b01f1c8d98ed3e48a9cd1cd476f2ed
Contents?: true
Size: 1.7 KB
Versions: 1
Compression:
Stored size: 1.7 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'xmlsec/version' Gem::Specification.new do |spec| spec.name = "nokogiri-xmlsec-me-harder" spec.version = Xmlsec::VERSION spec.authors = ["Albert J. Wong"] spec.email = ["awong.dev@gmail.com"] spec.description = %q{Adds support to Ruby for encrypting, decrypting, signing and validating the signatures of XML documents, according to the [XML Encryption Syntax and Processing](http://www.w3.org/TR/xmlenc-core/) standard, by wrapping around the [xmlsec](http://www.aleksey.com/xmlsec) C library and adding relevant methods to `Nokogiri::XML::Document`. Implementation is based off nokogiri-xmlsec by "Colin MacKenzie IV" <inisterchipmunk@gmail.com> with heavy modifications and some API changes.} spec.summary = %q{Wrapper around http://www.aleksey.com/xmlsec to support XML encryption, decryption, signing and signature validation in Ruby} spec.homepage = "https://github.com/omb-awong/xmlsec" spec.license = "MIT" spec.files = `git ls-files`.split($/) 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.extensions = %w{ext/nokogiri_ext_xmlsec/extconf.rb} spec.add_dependency 'nokogiri' spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rake-compiler" spec.add_development_dependency "rspec" spec.add_development_dependency "guard-rspec" spec.add_development_dependency "guard-rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nokogiri-xmlsec-me-harder-0.9.0 | nokogiri-xmlsec-me-harder.gemspec |