README.md in dasht-0.1.5 vs README.md in dasht-0.1.6
- old
+ new
@@ -10,15 +10,18 @@
Dasht is a Ruby / Rack application by [Rusty Klophaus](http://rusty.io), open-sourced under the MIT license.
[![Gem Version](https://badge.fury.io/rb/dasht.svg)](http://badge.fury.io/rb/dasht)
+![Dasht At FiveStreet](fivestreet_example.jpg)
+*Two Dasht-powered dashboards at FiveStreet HQ*
+
# Getting Started
Let's make the following dashboard for your Heroku app.
-![Dasht Screen Shot](screenshot_1.png)
+![Dasht Screen Shot](screenshot.png)
First, copy the Ruby code below to a file called `my_dashboard.rb`.
```ruby
require 'dasht'
@@ -279,10 +282,10 @@
b.value :my_metric, :title => "My Title"
```
### Map Tile
-Drop pins on a map corresponding to either a physical addresses ("123 Main Street...") or an IP address ("216.58.217.142"). The metric attached to the map should use the `append` metric type, and the block should return the address string. See `examples/simple_heroku_dashboard.rb` for an example.
+Drop pins on a map corresponding to either a physical addresses ("123 Main Street..."), an IP address ("216.58.217.142"), or coordinates ("[-97.7559964, 30.3071816]", longitude then latitude) . The metric attached to the map should use the `append` metric type, and the block should return the address string. See `examples/simple_heroku_dashboard.rb` for an example.
```ruby
b.map :visitors, :title => "Visitors"
```