grapht 0.1.5
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.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.rspec +3 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +267 -0
- data/Rakefile +1 -0
- data/bin/grapht +17 -0
- data/example-data/bar_data.json +5 -0
- data/example-data/donut_data.json +5 -0
- data/example-data/grapht_performance_line_data.json +7 -0
- data/example-data/line_data.json +16 -0
- data/grapht.gemspec +24 -0
- data/lib/graph-definitions/bar-horizontal.js +90 -0
- data/lib/graph-definitions/bar-vertical.js +89 -0
- data/lib/graph-definitions/donut.js +47 -0
- data/lib/graph-definitions/line.js +111 -0
- data/lib/grapht.rb +6 -0
- data/lib/grapht/shell.rb +18 -0
- data/lib/grapht/type.rb +5 -0
- data/lib/grapht/version.rb +3 -0
- data/script/grapht.coffee +107 -0
- data/spec/lib/grapht/shell_spec.rb +79 -0
- data/spec/spec_helper.rb +84 -0
- data/spec/support/rspec-prof.rb +8 -0
- data/vendor/d3.min.js +5 -0
- data/vendor/json2.js +489 -0
- metadata +121 -0
metadata
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: grapht
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tim Lowrimore
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-08-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Grapht is a server-side graphing library built on PhantomJS and utilizing
|
56
|
+
D3.js. Grapht provides a CLI for simple Bash scripting. It also profides a light-weight
|
57
|
+
Ruby API to make service-level integration simple.
|
58
|
+
email:
|
59
|
+
- tim@plia.com
|
60
|
+
executables:
|
61
|
+
- grapht
|
62
|
+
extensions: []
|
63
|
+
extra_rdoc_files: []
|
64
|
+
files:
|
65
|
+
- .gitignore
|
66
|
+
- .rspec
|
67
|
+
- Gemfile
|
68
|
+
- Gemfile.lock
|
69
|
+
- LICENSE.txt
|
70
|
+
- README.md
|
71
|
+
- Rakefile
|
72
|
+
- bin/grapht
|
73
|
+
- example-data/bar_data.json
|
74
|
+
- example-data/donut_data.json
|
75
|
+
- example-data/grapht_performance_line_data.json
|
76
|
+
- example-data/line_data.json
|
77
|
+
- grapht.gemspec
|
78
|
+
- lib/graph-definitions/bar-horizontal.js
|
79
|
+
- lib/graph-definitions/bar-vertical.js
|
80
|
+
- lib/graph-definitions/donut.js
|
81
|
+
- lib/graph-definitions/line.js
|
82
|
+
- lib/grapht.rb
|
83
|
+
- lib/grapht/shell.rb
|
84
|
+
- lib/grapht/type.rb
|
85
|
+
- lib/grapht/version.rb
|
86
|
+
- script/grapht.coffee
|
87
|
+
- spec/lib/grapht/shell_spec.rb
|
88
|
+
- spec/spec_helper.rb
|
89
|
+
- spec/support/rspec-prof.rb
|
90
|
+
- vendor/d3.min.js
|
91
|
+
- vendor/json2.js
|
92
|
+
homepage: https://github.com/ibpinc/grapht
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubyforge_project:
|
112
|
+
rubygems_version: 2.2.2
|
113
|
+
signing_key:
|
114
|
+
specification_version: 4
|
115
|
+
summary: Grapht is a server-side graphing library built on PhantomJS and utilizing
|
116
|
+
D3.js.
|
117
|
+
test_files:
|
118
|
+
- spec/lib/grapht/shell_spec.rb
|
119
|
+
- spec/spec_helper.rb
|
120
|
+
- spec/support/rspec-prof.rb
|
121
|
+
has_rdoc:
|