forked from amoose/omniauth-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-saml.gemspec
24 lines (19 loc) · 995 Bytes
/
omniauth-saml.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
require File.expand_path('../lib/omniauth-saml/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'omniauth-saml'
gem.version = OmniAuth::SAML::VERSION
gem.summary = 'A generic SAML strategy for OmniAuth.'
gem.description = 'A generic SAML strategy for OmniAuth.'
gem.license = 'MIT'
gem.authors = ['Raecoo Cao', 'Ryan Wilcox', 'Rajiv Aaron Manglani', 'Steven Anderson', 'Nikos Dimitrakopoulos', 'Rudolf Vriend']
gem.email = '[email protected]'
gem.homepage = 'https://github.com/PracticallyGreen/omniauth-saml'
gem.add_runtime_dependency 'omniauth', '~> 1.2'
gem.add_runtime_dependency 'ruby-saml'
gem.add_development_dependency 'rspec', '~> 2.8'
gem.add_development_dependency 'simplecov', '~> 0.6'
gem.add_development_dependency 'rack-test', '~> 0.6'
gem.files = ['README.md', 'CHANGELOG.md'] + Dir['lib/**/*.rb']
gem.test_files = Dir['spec/**/*.rb']
gem.require_paths = ["lib"]
end