forked from googleapis/google-cloud-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (25 loc) · 1.13 KB
/
Gemfile
File metadata and controls
29 lines (25 loc) · 1.13 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
source "https://rubygems.org"
gemspec
gem "gcloud-jsondoc",
git: "https://github.com/GoogleCloudPlatform/google-cloud-ruby.git",
branch: "gcloud-jsondoc"
gem "google-cloud-core", path: "../google-cloud-core"
gem "google-cloud-debugger", path: "../google-cloud-debugger"
gem "google-cloud-env", path: "../google-cloud-env"
gem "google-cloud-error_reporting", path: "../google-cloud-error_reporting"
gem "google-cloud-logging", path: "../google-cloud-logging"
gem "google-cloud-trace", path: "../google-cloud-trace"
gem "stackdriver-core", path: "../stackdriver-core"
# TEMP: nokogiri (a dependency of rails) 1.7 requires Ruby 2.1 or later.
# Since we're still testing on Ruby 2.0, pin nokogiri to 1.6 for now.
gem "nokogiri", "~> 1.6.8"
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.1")
# WORKAROUND: builds are failing on Ruby 2.0.
# We think this is because of a bug in Bundler 1.6.
# Specify a viable version to allow the build to succeed.
gem "jwt", "~> 1.5"
end
# WORKAROUND: builds are having problems since the release of 3.0.0
# pin to the last known good version
gem "public_suffix", "~> 2.0"
gem "rake", "~> 11.0"