forked from googleapis/google-cloud-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
35 lines (28 loc) · 1.16 KB
/
Rakefile
File metadata and controls
35 lines (28 loc) · 1.16 KB
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
34
35
require "rubygems"
require "hoe"
Hoe.plugin :git
Hoe.plugin :gemspec
Hoe.plugin :minitest
Hoe.spec "gcloud" do
developer "Silvano Luciani", "silvano@google.com"
developer "Mike Moore", "mike@blowmage.com"
self.summary = "API Client library for Google Cloud"
self.description = "Gcloud is the official library for interacting with Google Cloud."
self.urls = ["http://googlecloudplatform.github.io/gcloud-ruby/"]
self.history_file = "CHANGELOG.md"
self.readme_file = "README.md"
self.testlib = :minitest
self.spec_extras[:rdoc_options] = ["--main", "README.md",
"--exclude", "lib/gcloud/proto/",
"--exclude", "Manifest.txt"]
license "Apache-2.0"
dependency "beefcake", "~> 1.0"
dependency "google-api-client", "~> 0.8.3"
dependency "mime-types", "~> 2.4"
dependency "digest-crc", "~> 0.4"
dependency "rubocop", "~> 0.27", :dev
# TODO: Remove httpclient if/when the default faraday provider can upload without broken pipe errors
dependency "httpclient", "~> 2.5", :dev
dependency "simplecov", "~> 0.9", :dev
dependency "coveralls", "~> 0.7", :dev
end