-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaml_idp.gemspec
60 lines (51 loc) · 2.05 KB
/
saml_idp.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "saml_idp/version"
Gem::Specification.new do |s|
s.name = %q{saml_idp}
s.version = SamlIdp::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jon Phenow"]
s.email = %q{jon.phenow@sportngin.com}
s.homepage = %q{http://github.com/sportngin/saml_idp}
s.summary = %q{SAML Indentity Provider in ruby}
s.description = %q{SAML IdP (Identity Provider) library in ruby}
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.files = Dir.glob("app/**/*") + Dir.glob("lib/**/*") + [
"LICENSE",
"README.md",
"Gemfile",
"saml_idp.gemspec"
]
s.license = "LICENSE"
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.rdoc_options = ["--charset=UTF-8"]
s.post_install_message = <<-INST
If you're just recently updating saml_idp - please be aware we've changed the default
certificate. See the PR and a description of why we've done this here:
https://github.com/sportngin/saml_idp/pull/29
If you just need to see the certificate `bundle open saml_idp` and go to
`lib/saml_idp/default.rb`
Similarly, please see the README about certificates - you should avoid using the
defaults in a Production environment. Post any issues you to github.
** New in Version 0.3.0 **
Encrypted Assertions require the xmlenc gem. See the example in the Controller
section of the README.
INST
s.add_dependency('activesupport')
s.add_dependency('activeresource')
s.add_dependency('uuid')
s.add_dependency('builder')
s.add_dependency('httparty')
s.add_dependency('nokogiri', '>= 1.6.2')
s.add_development_dependency "rake"
s.add_development_dependency "simplecov"
s.add_development_dependency "rspec", "~> 2.5"
s.add_development_dependency "ruby-saml", "~> 1.3"
s.add_development_dependency("rails", "~> 5.2.6")
s.add_development_dependency("capybara")
s.add_development_dependency("timecop")
s.add_development_dependency("xmlenc", ">= 0.6.4")
end