README.md in yao-0.3.1 vs README.md in yao-0.3.2

- old
+ new

@@ -28,10 +28,17 @@ Yao.configure do auth_url "http://keystone.example.local:8080/v2.0/tokens" tenant_name "fooproject" username "udzura" password "tonk0tsu-r@men" + + # timeout is optional + timeout 300 + + # If your endpoint requires cert & key + client_cert "/path/to/my.pem" + client_key "/path/to/my.key" end Yao::Network.list # list up networks... Yao::Server.list_detail # list up instances... ``` @@ -65,11 +72,9 @@ OpenStack.configure do auth_url "http://keystone.example.local:8080/v2.0/tokens" tenant_name "fooproject" username "udzura" password "tonk0tsu-r@men" - # timeout is optional - timeout 300 end OpenStack::Server.list_detail # And let's go on ```