forked from omniauth/omniauth-uber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-uber.gemspec
26 lines (21 loc) · 948 Bytes
/
omniauth-uber.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'omniauth/uber/version'
Gem::Specification.new do |s|
s.name = 'omniauth-uber'
s.version = OmniAuth::Uber::VERSION
s.authors = ['Tom Milewski']
s.email = ['[email protected]']
s.summary = 'Uber strategy for OmniAuth'
s.description = 'Uber strategy for OmniAuth v1.2'
s.homepage = 'https://github.com/tmilewski/omniauth-uber'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").collect { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_runtime_dependency 'omniauth', '~> 1.2'
s.add_runtime_dependency 'omniauth-oauth2', '~> 1.0.2'
s.add_development_dependency 'dotenv', '>= 2.0'
s.add_development_dependency 'sinatra', '>= 2.0'
end