forked from Cloverhound/omniauth-ciscospark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-ciscospark.gemspec
26 lines (21 loc) · 1.03 KB
/
omniauth-ciscospark.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "omniauth-ciscospark/version"
Gem::Specification.new do |gem|
gem.add_dependency "oauth2", "~> 1.0"
gem.add_dependency "omniauth", "~> 1.2"
gem.add_development_dependency "bundler", "~> 1.0"
gem.authors = ["Michael Bleigh", "Erik Michaels-Ober"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = "An abstract OAuth2 strategy for OmniAuth."
gem.summary = gem.description
gem.homepage = "https://github.com/cloverhound/omniauth-ciscospark"
gem.licenses = %w(MIT)
gem.executables = `git ls-files -- bin/*`.split("\n").collect { |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-ciscospark"
gem.require_paths = %w(lib)
gem.version = OmniAuth::Ciscospark::VERSION
gem.add_runtime_dependency 'omniauth-oauth2', '>= 1.4'
end