-
Notifications
You must be signed in to change notification settings - Fork 69
/
omniauth-shopify-oauth2.gemspec
30 lines (25 loc) · 1.08 KB
/
omniauth-shopify-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
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'omniauth/shopify/version'
Gem::Specification.new do |s|
s.name = 'omniauth-shopify-oauth2'
s.version = OmniAuth::Shopify::VERSION
s.authors = ['Denis Odorcic']
s.email = ['gems@shopify.com']
s.summary = 'Shopify strategy for OmniAuth'
s.homepage = 'https://github.com/Shopify/omniauth-shopify-oauth2'
s.license = 'MIT'
s.metadata['allowed_push_host'] = 'https://rubygems.org'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.7'
s.add_runtime_dependency 'omniauth-oauth2', '~> 1.5'
s.add_runtime_dependency 'activesupport'
s.add_development_dependency 'minitest', '~> 5.6'
s.add_development_dependency 'rspec', '~> 3.9.0'
s.add_development_dependency 'fakeweb', '~> 1.3'
s.add_development_dependency 'rack-session', '~> 2.0'
s.add_development_dependency 'rake'
end