forked from paulwhiting/omniauth-familysearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-familysearch.gemspec
27 lines (23 loc) · 1.1 KB
/
omniauth-familysearch.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-familysearch/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Richard Hill']
gem.email = ['xrkhill@gmail.com']
gem.description = %q{OmniAuth strategy for FamilySearch OAuth2 API}
gem.summary = %q{OmniAuth strategy for FamilySearch OAuth2 API}
gem.homepage = 'https://github.com/xrkhill/omniauth-familysearch'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'omniauth-familysearch'
gem.require_paths = ['lib']
gem.version = OmniAuth::FamilySearch::VERSION
gem.add_runtime_dependency('multi_json')
gem.add_runtime_dependency('faraday')
gem.add_runtime_dependency('omniauth-oauth2')
gem.add_runtime_dependency('oauth2', '~> 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