-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgoogle-oauth2-installed.gemspec
33 lines (27 loc) · 1.19 KB
/
google-oauth2-installed.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
31
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'google-oauth2-installed/version'
Gem::Specification.new do |spec|
spec.name = "google-oauth2-installed"
spec.version = GoogleOauth2Installed::VERSION
spec.authors = ["Amiel Martin", "Kristian Freeman"]
spec.email = ["amiel@carnesmedia.com", "kristian@carnesmedia.com"]
spec.summary = %q{
Configure and authenticate to google with OAuth2 as an installed application
}
spec.description = %q{
Extracted from applications that use the DFP and Analytics apis,
google-oauth2-installed helps with configuration (from ENV).
It also helps with setup by providing an easy command to generate your OAuth tokens.
}
spec.homepage = "https://github.com/carnesmedia/google-oauth2-installed"
spec.license = "MIT"
spec.files = Dir['[A-Z]*']
spec.files += Dir['lib/**/*.{rb,rake}']
spec.files += spec.test_files = Dir['spec/**/*.rb']
spec.require_paths = ["lib"]
spec.add_dependency 'oauth2'
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
end