-
Notifications
You must be signed in to change notification settings - Fork 20
/
saml2.gemspec
41 lines (36 loc) · 1.54 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
37
38
39
40
41
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
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 = <<~TEXT
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.
TEXT
s.license = "MIT"
s.bindir = "exe"
s.executables = "bulk_verify_responses"
s.files = Dir["{app,lib,schemas,exe}/**/*"] + ["Rakefile"]
s.required_ruby_version = ">= 2.7"
# 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 "activesupport", ">= 3.2", "< 7.2"
s.add_dependency "nokogiri", ">= 1.5.8", "< 2.0"
s.add_dependency "nokogiri-xmlsec-instructure", "~> 0.9", ">= 0.9.5"
s.add_development_dependency "byebug", "~> 11.0"
s.add_development_dependency "rake", "~> 12.0"
s.add_development_dependency "rspec", "~> 3.5"
s.add_development_dependency "rubocop-inst", "~> 1"
s.add_development_dependency "rubocop-rake", "~> 0.6"
s.add_development_dependency "rubocop-rspec", "~> 2.20"
s.metadata["rubygems_mfa_required"] = "true"
end