visjs 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f144ec46d5c7d5c2bed3d81f37581aceb0f3cc9
4
- data.tar.gz: 3d799def414396273de947da201f9987b143167b
3
+ metadata.gz: 0a9df77756e193e637b3ea19e7605ebb27721da6
4
+ data.tar.gz: 4e7995d84e4e4d160c5d0aef33a553fd5d504b5d
5
5
  SHA512:
6
- metadata.gz: 704c1e37c264511f405e3f1ed1ff92e579d3c57f747f5182261513ca058ac6ee81fac8d6cdd6f5ceeacd28cd4661c07b0d7b7487e05d2e3fb6b31b53505c8a5c
7
- data.tar.gz: 18e1d9680a10839c589103ddb3098fd07413f6fbe2fb659c63e004409383da7e5cc807e45302ec2c277a8828ddc4b243370db16d110d720a3468af8f606d62ab
6
+ metadata.gz: bef237751d5d7dff48b0bb390df343354565cc347306dc7d80baa19e6dae353c7e472f8d9f7e993fe5d69ee9b64513c173a234626b8202e6cf4a24408b21d1d3
7
+ data.tar.gz: fb9e2d93fb942a56012368283e9d9ef0ae15797e287d8e65e3a298322fd77fd552f8f61009ebe346e31a2a36389530944f42198f9613705294bfb4d5c4e52c2f
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) [year] [fullname]
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # Visjs
2
2
 
3
- A dynamic, browser based visualization library. The library is designed to be easy to use, to handle large amounts of dynamic data, and to enable manipulation of and interaction with the data. The library consists of the components DataSet, Timeline, Network, Graph2d and Graph3d. (http://visjs.org/)
3
+ Vis.js is a dynamic, browser based visualization library. The library is designed to be easy to use, handle large amounts of dynamic data, and enable manipulation of the data. The library consists of the following components:
4
4
 
5
- This library was wrapped into a ruby gem and can be easily added to assets pipeline in Rails(=>3.1) project.
5
+ - DataSet and DataView. A flexible key/value based data set. Add, update, and remove items. Subscribe on changes in the data set. A DataSet can filter and order items, and convert fields of items.
6
+ - DataView. A filtered and/or formatted view on a DataSet.
7
+ - Graph2d. Plot data on a timeline with lines or barcharts.
8
+ - Graph3d. Display data in a three dimensional graph.
9
+ - Network. Display a network (force directed graph) with nodes and edges.
10
+ - Timeline. Display different types of data on a timeline.
6
11
 
7
- [![Gem Version](https://badge.fury.io/rb/visjs-rails.svg)](http://badge.fury.io/rb/visjs-rails)
12
+ ### The vis.js library was initialy developed by Almende B.V.
13
+
14
+ This project is wrapped as ruby gem.
8
15
 
9
16
  ## Installation
10
17
 
@@ -16,7 +23,7 @@ gem 'visjs'
16
23
 
17
24
  And then execute:
18
25
 
19
- $ bundle
26
+ $ bundle install
20
27
 
21
28
  Or install it yourself as:
22
29
 
@@ -27,9 +34,7 @@ Or install it yourself as:
27
34
  Add this line to your application's assets/javascripts/application.js:
28
35
 
29
36
  ```ruby
30
- //= require ...
31
37
  //= require vis
32
- //= require ...
33
38
  ```
34
39
 
35
40
  and also, add this line to your application's assets/stylesheets/application.scss:
@@ -1,3 +1,3 @@
1
1
  module Visjs
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["MJ Abadilla"]
10
10
  spec.email = ["mjmaix@gmail.com"]
11
11
 
12
- spec.summary = %q{Unofficial fork from https://github.com/luciuschoi/visjs-rails. Gemify vis.js library for Rails assets pipeline}
13
- spec.description = %q{Unofficial fork from https://github.com/luciuschoi/visjs-rails. Wrapping vis.js library with ruby gem for easy use in Rails projects}
12
+ spec.summary = %q{Gemify vis.js library for Rails assets pipeline}
13
+ spec.description = %q{Wrapping vis.js library with ruby gem for easy use in Rails projects}
14
14
  spec.homepage = "https://github.com/mjmaix/visjs"
15
15
 
16
16
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visjs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MJ Abadilla
@@ -38,8 +38,7 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- description: Unofficial fork from https://github.com/luciuschoi/visjs-rails. Wrapping
42
- vis.js library with ruby gem for easy use in Rails projects
41
+ description: Wrapping vis.js library with ruby gem for easy use in Rails projects
43
42
  email:
44
43
  - mjmaix@gmail.com
45
44
  executables: []
@@ -49,6 +48,7 @@ files:
49
48
  - ".gitignore"
50
49
  - CODE_OF_CONDUCT.md
51
50
  - Gemfile
51
+ - LICENSE.md
52
52
  - README.md
53
53
  - Rakefile
54
54
  - bin/console
@@ -103,6 +103,5 @@ rubyforge_project:
103
103
  rubygems_version: 2.6.8
104
104
  signing_key:
105
105
  specification_version: 4
106
- summary: Unofficial fork from https://github.com/luciuschoi/visjs-rails. Gemify vis.js
107
- library for Rails assets pipeline
106
+ summary: Gemify vis.js library for Rails assets pipeline
108
107
  test_files: []