forked from StevenNdaye/okta_saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathokta_saml.gemspec
22 lines (18 loc) · 1.33 KB
/
okta_saml.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
require 'okta_saml/version'
Gem::Specification.new do |gem|
gem.name = "okta_saml"
gem.version = OktaSaml::VERSION
gem.authors = ["Michael Hoitomt", "Jared Branum", "Ed Leung", "Luke Fender", "Thomas Stankus", "Jeb Beich", "Eric Caspary", "Phong Si", "Eric Toulson", "Jordi Noguera"]
gem.email = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
gem.description = %q{The okta_saml gem helps Ruby on Rails applications communicate with Okta}
gem.summary = %q{The okta_saml gem helps Ruby on Rails applications communicate with Okta. The gem properly
contstructs the request to Okta and handles the response back from Okta.}
gem.homepage = "https://github.com/primedia/okta_saml"
gem.files = Dir["{app,config,db,lib}/**/*"] + ["CONTRIBUTORS", "LICENSE", "Rakefile", "README.md"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.add_dependency "rails", ">= 3.2.13"
gem.add_dependency "ruby-saml", "~> 0.7.2"
gem.add_development_dependency "rspec-rails"
end