-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathomniauth-multi-provider.gemspec
42 lines (33 loc) · 1.57 KB
/
omniauth-multi-provider.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
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omni_auth/multi_provider/version'
Gem::Specification.new do |spec|
spec.name = 'omniauth-multi-provider'
spec.version = OmniAuth::MultiProvider::VERSION
spec.authors = ['Salsify, Inc']
spec.email = ['[email protected]']
spec.summary = 'OmniAuth support for multiple providers of an authentication strategy'
spec.description = spec.summary
spec.homepage = 'https://github.com/salsify/omniauth-multi-provider'
spec.license = 'MIT'
# Set 'allowed_push_post' to control where this gem can be published.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['rubygems_mfa_required'] = 'true'
else
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
end
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.7'
spec.add_dependency 'omniauth'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'overcommit'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'salsify_rubocop', '~> 1.43.0'
end