~ubuntu-branches/debian/sid/ruby-omniauth-saml/sid

« back to all changes in this revision

Viewing changes to omniauth-saml.gemspec

  • Committer: Package Import Robot
  • Author(s): Balasankar C
  • Date: 2015-07-07 22:49:33 UTC
  • Revision ID: package-import@ubuntu.com-20150707224933-gonfr52zexvl602b
Tags: upstream-1.3.1
ImportĀ upstreamĀ versionĀ 1.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require File.expand_path('../lib/omniauth-saml/version', __FILE__)
 
2
 
 
3
Gem::Specification.new do |gem|
 
4
  gem.name          = 'omniauth-saml'
 
5
  gem.version       = OmniAuth::SAML::VERSION
 
6
  gem.summary       = 'A generic SAML strategy for OmniAuth.'
 
7
  gem.description   = 'A generic SAML strategy for OmniAuth.'
 
8
  gem.license       = 'MIT'
 
9
 
 
10
  gem.authors       = ['Raecoo Cao', 'Ryan Wilcox', 'Rajiv Aaron Manglani', 'Steven Anderson', 'Nikos Dimitrakopoulos', 'Rudolf Vriend']
 
11
  gem.email         = 'rajiv@alum.mit.edu'
 
12
  gem.homepage      = 'https://github.com/PracticallyGreen/omniauth-saml'
 
13
 
 
14
  gem.add_runtime_dependency 'omniauth', '~> 1.1'
 
15
  gem.add_runtime_dependency 'ruby-saml', '~> 0.8.1'
 
16
 
 
17
  gem.add_development_dependency 'rspec', '~> 2.8'
 
18
  gem.add_development_dependency 'simplecov', '~> 0.6'
 
19
  gem.add_development_dependency 'rack-test', '~> 0.6'
 
20
 
 
21
  gem.files         = ['README.md', 'CHANGELOG.md'] + Dir['lib/**/*.rb']
 
22
  gem.test_files    = Dir['spec/**/*.rb']
 
23
  gem.require_paths = ["lib"]
 
24
end