forked from zquestz/omniauth-google-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-contrib.gemspec
24 lines (19 loc) · 925 Bytes
/
omniauth-contrib.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omniauth/google_oauth2/version', __FILE__)
Gem::Specification.new do |gem|
gem.add_dependency 'omniauth', '~> 1.0'
gem.authors = ["Josh Ellithorpe", "Yury Korolev"]
gem.email = ["[email protected]"]
gem.description = %q{A Google oauth2 strategy for OmniAuth 1.0}
gem.summary = %q{A Google oauth2 strategy for OmniAuth 1.0}
gem.homepage = ""
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "omniauth-google-oauth2"
gem.require_paths = ["lib"]
gem.version = OmniAuth::GoogleOauth2::VERSION
gem.add_runtime_dependency 'omniauth-oauth2'
gem.add_development_dependency 'rspec', '~> 2.6.0'
gem.add_development_dependency 'rake'
end