-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathomniauth-clearbit.gemspec
27 lines (24 loc) · 1.14 KB
/
omniauth-clearbit.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omniauth-clearbit/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alex MacCaw"]
gem.email = ["alex@clearbit.com"]
gem.description = %q{Official OmniAuth strategy for Clearbit.}
gem.summary = %q{Official OmniAuth strategy for Clearbit.}
gem.homepage = "https://clearbit.com/clearbit/omniauth-clearbit"
gem.license = "MIT"
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-clearbit"
gem.require_paths = ["lib"]
gem.version = OmniAuth::Clearbit::VERSION
gem.add_dependency 'omniauth', '~> 1.0'
# Nothing lower than omniauth-oauth2 1.1.1
# http://www.rubysec.com/advisories/CVE-2012-6134/
gem.add_dependency 'omniauth-oauth2', '>= 1.1.1', '< 2.0'
gem.add_development_dependency 'rspec', '~> 2.7'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'webmock'
end