forked from digidentity/libsaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaml.gemspec
27 lines (22 loc) · 1.19 KB
/
saml.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "saml/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "libsaml"
s.version = Saml::VERSION
s.authors = ["Benoist Claassen"]
s.email = ["[email protected]"]
s.homepage = "https://www.digidentity.eu"
s.license = "MIT"
s.summary = "A gem to easily create SAML 2.0 messages."
s.description = "Libsaml makes the creation of SAML 2.0 messages easy. The object structure is modeled after the SAML Core 2.0 specification from OASIS. Supported bindings are HTTP-Post, HTTP-Redirect, HTTP-Artifact and SOAP. Features include XML signing, XML verification and a pluggable backend for providers (FileStore backend included)."
s.files = Dir["{lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "activesupport", ">= 3.2.15"
s.add_dependency "activemodel", ">= 3.0.0"
s.add_dependency "nokogiri-happymapper", '~> 0.5.7'
s.add_dependency "xmldsig", '~> 0.2.5'
s.add_dependency "xmlenc", '~> 0.4.0'
s.add_dependency "curb"
s.add_development_dependency "coveralls", "~> 0.7"
end