forked from longlostnick/omniauth-dropbox-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathomniauth-dropbox-oauth2.gemspec
29 lines (22 loc) · 1.04 KB
/
omniauth-dropbox-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
# encoding: utf-8
require File.expand_path(File.join('..', 'lib', 'omniauth', 'dropbox_oauth2', 'version'), __FILE__)
Gem::Specification.new do |gem|
gem.name = 'omniauth-dropbox-oauth2'
gem.version = OmniAuth::DropboxOauth2::VERSION
gem.homepage = 'https://github.com/bamorim/omniauth-dropbox-oauth2'
gem.author = "Bernardo Amorim"
gem.email = 'contato@bamorim.com'
gem.description = 'Dropbox OAuth2 strategy for OmniAuth 1.x'
gem.summary = gem.description
gem.required_ruby_version = ">= 3"
gem.add_dependency 'omniauth', '~> 2'
gem.add_dependency 'omniauth-oauth2', '>= 1.4.0', '< 2.0'
gem.add_development_dependency 'rspec', '~> 3.5'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'webmock'
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.require_paths = ['lib']
end