morrisjs-rails 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # morrisjs-rails
2
+
3
+ morris.js for the Rails Asset Pipeline
4
+
5
+ ## Installation
6
+
7
+ Add this to your application's Gemfile:
8
+
9
+ gem 'morrisjs-rails'
10
+ gem 'raphael-rails'
11
+
12
+ And then execute:
13
+
14
+ $ bundle
15
+
16
+ Or install it yourself as:
17
+
18
+ $ gem install morrisjs-rails
19
+ $ gem install raphael-rails
20
+
21
+ ## Usage
22
+
23
+ Add the following directive to your Javascript manifest file (application.js):
24
+
25
+ //= require raphael
26
+ //= require morris
27
+
28
+ ## Versioning
29
+
30
+ The naming schema is identical to morris.js.
31
+
32
+
33
+ ## Contributing
34
+
35
+ 1. Fork it
36
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
37
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
38
+ 4. Push to the branch (`git push origin my-new-feature`)
39
+ 5. Create new Pull Request
@@ -0,0 +1,5 @@
1
+ module Morrisjs
2
+ module Rails
3
+ VERSION = "0.3.3"
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require "morrisjs-rails/version"
2
+
3
+ module Morrisjs
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end