README.md in vault-tools-0.0.5 vs README.md in vault-tools-0.0.7
- old
+ new
@@ -1,15 +1,33 @@
-# Vault Tools
+# Vault::Tools
-Tooling for the Heroku Vault team to enable faster bootstrapping for Ruby projects.
+Tooling for the Heroku Vault team to enable faster bootstrapping for
+Ruby projects.
+## Setting up a development environment
+
+Install the dependencies:
+
+ bundle install --binstubs vendor/bin
+ rbenv rehash
+
+Run the tests:
+
+ vendor/bin/t
+
+Generate the API documentation:
+
+ vendor/bin/d
+
+
## Installation
Add this line to your application's Gemfile:
gem 'vault-tools'
+
## Usage
### Logging
```ruby
@@ -18,10 +36,10 @@
Log.count('foo')
# => "measure=true at=foo"
```
-### Sinatra Base Class
+### Sinatra base class
Includes request logging and health endpoints
```ruby
class Web < Vault::Web