forked from cloudfoundry/omniauth-uaa-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-uaa-oauth2.gemspec
38 lines (32 loc) · 1.54 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- encoding: utf-8 -*-
#
# Cloud Foundry 2012.02.03 Beta
# Copyright (c) [2009-2012] VMware, Inc. All Rights Reserved.
#
# This product is licensed to you under the Apache License, Version 2.0 (the "License").
# You may not use this product except in compliance with the License.
#
# This product includes a number of subcomponents with
# separate copyright notices and license terms. Your use of these
# subcomponents is subject to the terms and conditions of the
# subcomponent's license, as noted in the LICENSE file.
#
require File.expand_path('../lib/omniauth/uaa_oauth2/version', __FILE__)
Gem::Specification.new do |gem|
gem.add_dependency 'omniauth', '~> 1.0'
gem.add_dependency 'cf-uaa-lib'
gem.authors = ["Joel D'sa", "Dave Syer", "Dale Olds", "Vidya Valmikinathan", "Luke Taylor"]
gem.email = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
gem.description = %q{An OmniAuth strategy for the Cloudfoundry UAA}
gem.summary = %q{An OmniAuth strategy for the Cloudfoundry 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 'cf-uaa-lib'
gem.add_development_dependency 'rspec', '~> 2.6.0'
gem.add_development_dependency 'rake'
end