Skip to content

Instantly share code, notes, and snippets.

@achilles42
Created December 12, 2015 12:03
Show Gist options
  • Save achilles42/48ce8b0a9bb49397c0af to your computer and use it in GitHub Desktop.
Save achilles42/48ce8b0a9bb49397c0af to your computer and use it in GitHub Desktop.
# 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 = ["praveen.shukla@c42.in"]
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