Created
December 12, 2015 12:03
-
-
Save achilles42/48ce8b0a9bb49397c0af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
lib = File.expand_path('../lib', __FILE__) | |
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require 'google_client/version' | |
Gem::Specification.new do |spec| | |
spec.name = "google-client" | |
spec.version = GapiClient::VERSION | |
spec.authors = ["praveen shukla"] | |
spec.email = ["[email protected]"] | |
if spec.respond_to?(:metadata) | |
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server." | |
end | |
spec.summary = "HTTP client used to communicate to google" | |
spec.license = "MIT" | |
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | |
spec.bindir = "bin" | |
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | |
spec.require_paths = ["lib"] | |
spec.add_development_dependency "bundler", "~> 1.8" | |
spec.add_development_dependency "rake", "~> 10" | |
spec.add_development_dependency "rspec", "~> 3" | |
spec.add_development_dependency "vcr", "~> 2" | |
spec.add_development_dependency "webmock", "~> 1" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment