forked from zquestz/omniauth-google-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-google-oauth2.gemspec
26 lines (21 loc) · 1 KB
/
omniauth-google-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
# -*- encoding: utf-8 -*-
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 = %q{A Google OAuth2 strategy for OmniAuth 1.x}
gem.description = %q{A Google OAuth2 strategy for OmniAuth 1.x}
gem.authors = ["Josh Ellithorpe", "Yury Korolev"]
gem.email = ["[email protected]"]
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.0'
gem.add_runtime_dependency 'omniauth', '>= 1.1.1'
gem.add_runtime_dependency 'omniauth-oauth2', '>= 1.3.1'
gem.add_runtime_dependency 'jwt', '~> 1.5.2'
gem.add_runtime_dependency 'multi_json', '~> 1.3'
gem.add_development_dependency 'rspec', '>= 2.14.0'
gem.add_development_dependency 'rake'
end