lilygraph 0.2.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.
- data/.gitignore +1 -0
- data/LICENSE +0 -0
- data/README +0 -0
- data/Rakefile +17 -0
- data/VERSION +1 -0
- data/doc/classes/Lilygraph.html +298 -0
- data/doc/classes/Lilygraph.src/M000001.html +20 -0
- data/doc/classes/Lilygraph.src/M000002.html +18 -0
- data/doc/classes/Lilygraph.src/M000003.html +120 -0
- data/doc/created.rid +1 -0
- data/doc/files/lib/lilygraph_rb.html +119 -0
- data/doc/fr_class_index.html +27 -0
- data/doc/fr_file_index.html +27 -0
- data/doc/fr_method_index.html +29 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/lilygraph.rb +208 -0
- data/lilygraph.gemspec +57 -0
- metadata +82 -0
data/lilygraph.gemspec
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{lilygraph}
|
8
|
+
s.version = "0.2.5"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Christopher Giroir"]
|
12
|
+
s.date = %q{2009-08-20}
|
13
|
+
s.description = %q{Lilygraph is a Ruby library for creating svg charts and graphs based on XmlBuilder.}
|
14
|
+
s.email = %q{kelsin@valefor.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".gitignore",
|
21
|
+
"LICENSE",
|
22
|
+
"README",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"doc/classes/Lilygraph.html",
|
26
|
+
"doc/classes/Lilygraph.src/M000001.html",
|
27
|
+
"doc/classes/Lilygraph.src/M000002.html",
|
28
|
+
"doc/classes/Lilygraph.src/M000003.html",
|
29
|
+
"doc/created.rid",
|
30
|
+
"doc/files/lib/lilygraph_rb.html",
|
31
|
+
"doc/fr_class_index.html",
|
32
|
+
"doc/fr_file_index.html",
|
33
|
+
"doc/fr_method_index.html",
|
34
|
+
"doc/index.html",
|
35
|
+
"doc/rdoc-style.css",
|
36
|
+
"lib/lilygraph.rb",
|
37
|
+
"lilygraph.gemspec"
|
38
|
+
]
|
39
|
+
s.homepage = %q{http://github.com/Kelsin/lilygraph}
|
40
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
41
|
+
s.require_paths = ["lib"]
|
42
|
+
s.rubygems_version = %q{1.3.4}
|
43
|
+
s.summary = %q{Lilygraph is a Ruby library for creating svg charts and graphs based on XmlBuilder.}
|
44
|
+
|
45
|
+
if s.respond_to? :specification_version then
|
46
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
47
|
+
s.specification_version = 3
|
48
|
+
|
49
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
50
|
+
s.add_runtime_dependency(%q<color-tools>, [">= 1.3.0"])
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<color-tools>, [">= 1.3.0"])
|
53
|
+
end
|
54
|
+
else
|
55
|
+
s.add_dependency(%q<color-tools>, [">= 1.3.0"])
|
56
|
+
end
|
57
|
+
end
|
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lilygraph
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Christopher Giroir
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-08-20 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: color-tools
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.3.0
|
24
|
+
version:
|
25
|
+
description: Lilygraph is a Ruby library for creating svg charts and graphs based on XmlBuilder.
|
26
|
+
email: kelsin@valefor.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README
|
34
|
+
files:
|
35
|
+
- .gitignore
|
36
|
+
- LICENSE
|
37
|
+
- README
|
38
|
+
- Rakefile
|
39
|
+
- VERSION
|
40
|
+
- doc/classes/Lilygraph.html
|
41
|
+
- doc/classes/Lilygraph.src/M000001.html
|
42
|
+
- doc/classes/Lilygraph.src/M000002.html
|
43
|
+
- doc/classes/Lilygraph.src/M000003.html
|
44
|
+
- doc/created.rid
|
45
|
+
- doc/files/lib/lilygraph_rb.html
|
46
|
+
- doc/fr_class_index.html
|
47
|
+
- doc/fr_file_index.html
|
48
|
+
- doc/fr_method_index.html
|
49
|
+
- doc/index.html
|
50
|
+
- doc/rdoc-style.css
|
51
|
+
- lib/lilygraph.rb
|
52
|
+
- lilygraph.gemspec
|
53
|
+
has_rdoc: true
|
54
|
+
homepage: http://github.com/Kelsin/lilygraph
|
55
|
+
licenses: []
|
56
|
+
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options:
|
59
|
+
- --charset=UTF-8
|
60
|
+
require_paths:
|
61
|
+
- lib
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: "0"
|
67
|
+
version:
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: "0"
|
73
|
+
version:
|
74
|
+
requirements: []
|
75
|
+
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 1.3.4
|
78
|
+
signing_key:
|
79
|
+
specification_version: 3
|
80
|
+
summary: Lilygraph is a Ruby library for creating svg charts and graphs based on XmlBuilder.
|
81
|
+
test_files: []
|
82
|
+
|