flot-graph-rails 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +30 -9
- data/lib/flot_graph-rails/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# FlotGraph::Rails
|
2
2
|
|
3
|
-
|
3
|
+
Flot graph with Rails 3+ version. Includes the assets pipeline.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
|
-
gem
|
9
|
+
gem "flot-graph-rails", "~> 1.0.1"
|
10
10
|
|
11
11
|
And then execute:
|
12
12
|
|
@@ -18,12 +18,33 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
//= require jquery.flot
|
22
22
|
|
23
|
-
## Contributing
|
24
23
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
24
|
+
### License
|
25
|
+
|
26
|
+
The MIT License
|
27
|
+
|
28
|
+
flot-graph-rails gem: Copyright (c) 2013 Bhushan G Ahire
|
29
|
+
jQuery Flot: Copyright © 2007 - 2013 IOLA and Ole Laursen
|
30
|
+
|
31
|
+
Permission is hereby granted, free of charge, to any person
|
32
|
+
obtaining a copy of this software and associated documentation
|
33
|
+
files (the "Software"), to deal in the Software without
|
34
|
+
restriction, including without limitation the rights to use,
|
35
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
36
|
+
copies of the Software, and to permit persons to whom the
|
37
|
+
Software is furnished to do so, subject to the following
|
38
|
+
conditions:
|
39
|
+
|
40
|
+
The above copyright notice and this permission notice shall be
|
41
|
+
included in all copies or substantial portions of the Software.
|
42
|
+
|
43
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
44
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
45
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
46
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
47
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
48
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
49
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
50
|
+
OTHER DEALINGS IN THE SOFTWARE.
|