Need to support JRuby via the jruby-openssl gem.
[arvados.git] / README.md
index 85e796cab60bf09196dd23cec391e74fb387b67a..f9942aec1b5f31cfcd878d1f555d5e8260b0dc54 100644 (file)
--- a/README.md
+++ b/README.md
@@ -7,6 +7,9 @@
   <dt>License</dt><dd>Apache 2.0</dd>
 </dl>
 
+[![Build Status](https://secure.travis-ci.org/google/google-api-ruby-client.png)](http://travis-ci.org/google/google-api-ruby-client)
+[![Dependency Status](https://gemnasium.com/google/google-api-ruby-client.png)](https://gemnasium.com/google/google-api-ruby-client)
+
 # Description
 
 The Google API Ruby Client makes it trivial to discover and access supported
@@ -46,14 +49,13 @@ APIs.
     client.authorization.fetch_token_credential!(:verifier => '12345')
     
     # Discover available methods
-    method_names = client.discovered_api('buzz').to_h.keys
+    method_names = client.discovered_api('plus').to_h.keys
     
     # Make an API call
-    response = client.execute(
-      'chili.activities.list',
-      {'scope' => '@self', 'userId' => '@me', 'alt' => 'json'}
+    result = client.execute(
+      'plus.activities.list',
+      {'collection' => 'public', 'userId' => 'me'}
     )
-    status, headers, body = response
 
 # Install