-
Notifications
You must be signed in to change notification settings - Fork 20
/
omniauth-uaa-oauth2.gemspec
23 lines (19 loc) · 1.09 KB
/
omniauth-uaa-oauth2.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omniauth/uaa_oauth2/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Dr Nic Williams", "Joel D'sa", "Dave Syer", "Dale Olds", "Vidya Valmikinathan", "Luke Taylor"]
gem.email = ["drnicwilliams@gmail.com", "jdsa@vmware.com", "olds@vmware.com", "dsyer@vmware.com", "vidya@vmware.com", "ltaylor@vmware.com"]
gem.description = %q{An OmniAuth strategy for the Cloud Foundry UAA}
gem.summary = %q{An OmniAuth strategy for the Cloud Foundry UAA}
gem.homepage = ""
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "omniauth-uaa-oauth2"
gem.require_paths = ["lib"]
gem.version = OmniAuth::Cloudfoundry::VERSION
gem.add_runtime_dependency 'omniauth', '>= 1', '< 3'
gem.add_runtime_dependency 'cf-uaa-lib', ['>= 3.2', '< 5.0']
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rake'
end