forked from instructure/ruby-saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saml2.gemspec
36 lines (32 loc) · 1.33 KB
/
saml2.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
34
35
36
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "saml2/version"
Gem::Specification.new do |s|
s.name = 'saml2'
s.version = SAML2::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Cody Cutrer"]
s.email = "[email protected]'"
s.homepage = "https://github.com/instructure/ruby-saml2"
s.summary = "SAML 2.0 Library"
s.description = <<-DESC
The saml2 library is yet another SAML library for Ruby, with
an emphasis on _not_ re-implementing XML, especially XML Security,
_not_ parsing via Regex or generating XML by string concatenation,
_not_ serializing/re-parsing multiple times just to get it into
the correct format to sign or validate.
For now, it provides a clean interface for implementing an IdP,
but not an SP.
DESC
s.license = "MIT"
s.files = Dir["{app,lib,schemas}/**/*"] + ["Rakefile"]
s.test_files = Dir["spec/**/*"]
# Very specifically at least 1.5.8 - they fixed a bug with namespaces
# on root elements with XML::Builder in that release
s.add_dependency 'nokogiri', ">= 1.5.8", "< 2.0"
s.add_dependency 'nokogiri-xmlsec-instructure', "~> 0.9", ">= 0.9.5"
s.add_dependency 'activesupport', ">= 3.2", "< 7.1"
s.add_development_dependency "byebug", "~> 11.0"
s.add_development_dependency "rake", "~> 12.0"
s.add_development_dependency "rspec", "~> 3.5"
end