forked from saml-idp/saml_idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saml_idp.gemspec
59 lines (50 loc) · 2.1 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
# -*- 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{[email protected]}
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.required_ruby_version = '>= 2.2'
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', '>= 3.2')
s.add_dependency('uuid', '~> 2.3')
s.add_dependency('builder', '~> 3.0')
s.add_dependency('nokogiri', '>= 1.6.2')
s.add_development_dependency('rake', '~> 10.4.2')
s.add_development_dependency('simplecov', '~> 0.12')
s.add_development_dependency('rspec', '~> 2.5')
s.add_development_dependency('ruby-saml', '~> 1.3')
s.add_development_dependency('rails', '~> 3.2')
s.add_development_dependency('capybara', '~> 2.11.0')
s.add_development_dependency('timecop', '~> 0.8')
s.add_development_dependency('xmlenc', '>= 0.6.4')
end