canvasxpress-rails 7.3.0
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/LICENSE.txt +57 -0
- data/README.md +39 -0
- data/lib/canvasxpress/rails/version.rb +5 -0
- data/lib/canvasxpress/rails.rb +8 -0
- data/vendor/assets/javascripts/canvasXpress.min.js +35 -0
- data/vendor/assets/stylesheets/canvasXpress.css +963 -0
- metadata +114 -0
data/LICENSE.txt
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
/*
|
2
|
+
* CanvasXpress 7.3 - JavaScript Canvas Library
|
3
|
+
*
|
4
|
+
* Copyright (c) 2009-2013 Isaac Neuhaus
|
5
|
+
*
|
6
|
+
* imnphd@gmail.com
|
7
|
+
*
|
8
|
+
*
|
9
|
+
* Redistributions of this source code must retain this copyright
|
10
|
+
* notice and the following disclaimer.
|
11
|
+
*
|
12
|
+
* CanvasXpress is licensed under the terms of the Open Source
|
13
|
+
* GPL version 3.0 license.
|
14
|
+
*
|
15
|
+
* This program is distributed in the hope that it will be useful,
|
16
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18
|
+
* GNU General Public License for more details.
|
19
|
+
*
|
20
|
+
* You should have received a copy of the GNU General Public License
|
21
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
22
|
+
*
|
23
|
+
* Commercial use may be granted to the extent that this source code
|
24
|
+
* does NOT become part of any other Open Source or Commercially licensed
|
25
|
+
* development library or toolkit without explicit permission.
|
26
|
+
*
|
27
|
+
* Network graphs were implemented based on the HeyGraph by Tom Martin
|
28
|
+
* <http://www.heychinaski.com>.
|
29
|
+
*
|
30
|
+
* Thanks to Mingyi Liu for his contributions with the Ext-JS panel and
|
31
|
+
* network graphs and Charles Tilford for his input to the Genome Browser.
|
32
|
+
*
|
33
|
+
*/
|
34
|
+
|
35
|
+
canvasxpress-rails, the gem packaging of CanvasXpress, is Copyright (c) 2013 Jay Lawrence
|
36
|
+
|
37
|
+
MIT License
|
38
|
+
|
39
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
40
|
+
a copy of this software and associated documentation files (the
|
41
|
+
"Software"), to deal in the Software without restriction, including
|
42
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
43
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
44
|
+
permit persons to whom the Software is furnished to do so, subject to
|
45
|
+
the following conditions:
|
46
|
+
|
47
|
+
The above copyright notice and this permission notice shall be
|
48
|
+
included in all copies or substantial portions of the Software.
|
49
|
+
|
50
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
51
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
52
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
53
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
54
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
55
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
56
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
57
|
+
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# Canvasxpress::Rails
|
2
|
+
|
3
|
+
Packaging of canvasXpress for Rails
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'canvasxpress-rails'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install canvasxpress-rails
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Add the canvasXpress js to your rails app by adding
|
22
|
+
|
23
|
+
//= require canvasXpress.min
|
24
|
+
|
25
|
+
to app/assets/javascripts/application.js (or other as you wish)
|
26
|
+
|
27
|
+
And
|
28
|
+
|
29
|
+
/*
|
30
|
+
* require canvasXpress
|
31
|
+
*/
|
32
|
+
|
33
|
+
to app/assets/stylesheets/application.css
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
I cannot commit to keeping this project 100% fresh so if you want to take it over ... just let me
|
38
|
+
know and you're in charge.
|
39
|
+
|