-
Notifications
You must be signed in to change notification settings - Fork 4
/
omniauth-mercadolibre.gemspec
26 lines (22 loc) · 1.18 KB
/
omniauth-mercadolibre.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
# Maintain your gem's version:
require File.expand_path(File.join('..', 'lib', 'omniauth-mercadolibre', 'version'), __FILE__)
# Describe your gem and declare its dependencies:
Gem::Specification.new do |gem|
gem.name = "omniauth-mercadolibre"
gem.version = OmniAuth::MercadoLibre::VERSION
gem.authors = ["Gullit Miranda"]
gem.email = ["gullitmiranda@requestdev.com.br"]
gem.description = %q{A MercadoLibre OAuth2 strategy for OmniAuth 1.x}
gem.summary = %q{A MercadoLibre OAuth2 strategy for OmniAuth 1.x}
gem.homepage = "https://github.com/gullitmiranda/omniauth-mercadolibre"
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_dependency 'omniauth', '~> 1.2', '>= 1.2.2'
gem.add_dependency 'omniauth-oauth2', '~> 1.2', '>= 1.2.0'
gem.add_development_dependency 'rspec', '~> 2.14', '>= 2.14.1'
gem.add_development_dependency 'rack-test', '~> 0'
gem.add_development_dependency 'simplecov', '~> 0'
gem.add_development_dependency 'webmock', '~> 0'
end