forked from 18F/saml_idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saml_idp.gemspec
64 lines (55 loc) · 2.25 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
60
61
62
63
# -*- encoding: utf-8 -*-
$LOAD_PATH.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", 'Peter Karman']
s.email = %q{[email protected]}
s.homepage = %q{http://github.com/18F/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('uuid')
s.add_dependency('builder')
s.add_dependency('httparty')
s.add_dependency('nokogiri', '>= 1.10.2')
s.add_dependency("pkcs11")
s.add_development_dependency("capybara", "~> 3.15.1")
s.add_development_dependency("listen")
s.add_development_dependency "pry-byebug"
s.add_development_dependency("rails", "~> 5.1")
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "rubocop", "0.76.0"
s.add_development_dependency "ruby-saml", "~> 1.11.0"
s.add_development_dependency "simplecov", "~> 0.17.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency("timecop")
s.add_development_dependency("xmlenc", ">= 0.6.4")
end