From 7ab804fa57b779dacba9b41e08a4ea710a161609 Mon Sep 17 00:00:00 2001 From: "@rubynerd" Date: Tue, 2 Aug 2016 21:15:20 +0100 Subject: [PATCH] Use twiddle-wakka for dependency example in Gemfile This just bit me because of an "uninitialized constant Google::Apis::Core::JsonObjectSupport" error with generated API files, so I thought I would fix this up for someone in the future. For dependency resolution, this specifies any version of 'google-api-client' 0.9 is valid, but 1.0 is not. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1bdcf6aba..1da9ea32b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ migrate to the latest version. Add this line to your application's Gemfile: ```ruby -gem 'google-api-client', '0.9' +gem 'google-api-client', '~> 0.9' ```