README.md in chartjs-ror-1.0.1 vs README.md in chartjs-ror-1.1.0
- old
+ new
@@ -7,23 +7,28 @@
* Renders charts on page load rather than DOMContentReady ([reason][browsersupport]).
* Animates unless you have Modernizr and it doesn't detect canvas support ([reason][browsersupport]). You can manually override this.
* Optional alternative (better?) abscissa scale calculations.
* Utility method for filling in gaps in integer series.
-NOTE: this is Rails 3.0 only at the moment, so pre-asset pipeline. I plan to upgrade soon.
-
## Installation
Add this line to your application's Gemfile:
gem 'chartjs-ror'
And then execute:
$ bundle
-Add [Chart.js][] (and [Modernizr][] and [ExplorerCanvas][] if you need them) to your assets.
+In your JavaScript manifest, add:
+
+```javascript
+//= require Chart
+//= require excanvas
+```
+
+Add [Modernizr][] if you need it to your app's assets.
Ensure your browsers will display `<figure/>` and `<figcaption/>` correctly.
## Usage