mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
# frozen_string_literal: true
|
|
|
|
require File.expand_path(
|
|
File.join('..', 'lib', 'omniauth', 'google_oauth2', 'version'),
|
|
__FILE__
|
|
)
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = 'omniauth-google-oauth2'
|
|
gem.version = OmniAuth::GoogleOauth2::VERSION
|
|
gem.license = 'MIT'
|
|
gem.summary = %(A Google OAuth2 strategy for OmniAuth)
|
|
gem.description = %(A Google OAuth2 strategy for OmniAuth. This allows you to login to Google with your ruby app.)
|
|
gem.authors = ['Josh Ellithorpe', 'Yury Korolev']
|
|
gem.email = ['quest@mac.com']
|
|
gem.homepage = 'https://github.com/zquestz/omniauth-google-oauth2'
|
|
|
|
gem.files = `git ls-files`.split("\n")
|
|
gem.require_paths = ['lib']
|
|
|
|
gem.required_ruby_version = '>= 2.5'
|
|
|
|
gem.add_dependency 'jwt', '>= 2.9.2'
|
|
gem.add_dependency 'oauth2', '~> 2.0'
|
|
gem.add_dependency 'omniauth', '~> 2.0'
|
|
gem.add_dependency 'omniauth-oauth2', '~> 1.8'
|
|
|
|
gem.add_development_dependency 'rake', '~> 13.3'
|
|
gem.add_development_dependency 'rspec', '~> 3.6'
|
|
end
|