|
1 | | -# -*- encoding: utf-8 -*- |
| 1 | +# Copyright (c) 2017-present, BigCommerce Pty. Ltd. All rights reserved |
| 2 | +# |
| 3 | +# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated |
| 4 | +# documentation files (the "Software"), to deal in the Software without restriction, including without limitation the |
| 5 | +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit |
| 6 | +# persons to whom the Software is furnished to do so, subject to the following conditions: |
| 7 | +# |
| 8 | +# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the |
| 9 | +# Software. |
| 10 | +# |
| 11 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| 12 | +# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| 13 | +# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 14 | +# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 15 | +# |
2 | 16 | require File.expand_path('../lib/omniauth/bigcommerce/version', __FILE__) |
3 | 17 |
|
4 | 18 | Gem::Specification.new do |gem| |
5 | | - gem.authors = ['Tom Allen, Phil Muir, Sasha Gerrand'] |
| 19 | + gem.authors = ['BigCommerce Engineering'] |
6 | 20 | gem.email = ['developer@bigcommerce.com'] |
7 | | - gem.description = %q{Official OmniAuth strategy for BigCommerce.} |
8 | | - gem.summary = %q{Official OmniAuth strategy for BigCommerce.} |
| 21 | + gem.description = 'Official OmniAuth strategy for BigCommerce.' |
| 22 | + gem.summary = gem.description |
9 | 23 | gem.homepage = 'https://github.com/bigcommerce/omniauth-bigcommerce' |
10 | 24 |
|
11 | 25 | gem.files = Dir['README.md', 'lib/**/*', 'omniauth-bigcommerce.gemspec', 'Gemfile'] |
12 | 26 | gem.name = 'omniauth-bigcommerce' |
13 | 27 | gem.require_paths = ['lib'] |
14 | 28 | gem.required_ruby_version = '>= 2.1' |
15 | 29 | gem.version = OmniAuth::BigCommerce::VERSION |
| 30 | + gem.license = 'MIT' |
16 | 31 |
|
| 32 | + gem.add_dependency 'oauth2', '~> 1.3.1' |
17 | 33 | gem.add_dependency 'omniauth' |
18 | | - gem.add_dependency 'omniauth-oauth2', '>= 1.1.1' |
| 34 | + gem.add_dependency 'omniauth-oauth2', '>= 1.5' |
19 | 35 | gem.add_development_dependency 'rake' |
20 | 36 | gem.add_development_dependency 'rspec' |
21 | 37 | gem.add_development_dependency 'simplecov' |
|
0 commit comments