Kelsin-lilygraph 0.0.0 → 0.2.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/Rakefile +16 -0
- data/VERSION +1 -1
- data/lilygraph.gemspec +2 -4
- metadata +2 -11
data/Rakefile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
begin
|
|
2
|
+
require 'jeweler'
|
|
3
|
+
Jeweler::Tasks.new do |s|
|
|
4
|
+
s.name = "lilygraph"
|
|
5
|
+
s.summary = "Lilygraph is a Ruby library for creating svg charts and graphs based on XmlBuilder."
|
|
6
|
+
s.description = "Lilygraph is a Ruby library for creating svg charts and graphs based on XmlBuilder."
|
|
7
|
+
s.email = "kelsin@valefor.com"
|
|
8
|
+
s.homepage = "http://github.com/Kelsin/lilygraph"
|
|
9
|
+
s.authors = ["Christopher Giroir"]
|
|
10
|
+
|
|
11
|
+
s.add_dependency("color-tools", ">= 1.3.0")
|
|
12
|
+
end
|
|
13
|
+
rescue LoadError
|
|
14
|
+
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
|
15
|
+
end
|
|
16
|
+
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
data/lilygraph.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{lilygraph}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Christopher Giroir"]
|
|
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.files = [
|
|
20
20
|
"LICENSE",
|
|
21
21
|
"README",
|
|
22
|
+
"Rakefile",
|
|
22
23
|
"VERSION",
|
|
23
24
|
"lib/lilygraph.rb",
|
|
24
25
|
"lilygraph.gemspec"
|
|
@@ -34,14 +35,11 @@ Gem::Specification.new do |s|
|
|
|
34
35
|
s.specification_version = 3
|
|
35
36
|
|
|
36
37
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
37
|
-
s.add_runtime_dependency(%q<builder>, [">= 2.1.2"])
|
|
38
38
|
s.add_runtime_dependency(%q<color-tools>, [">= 1.3.0"])
|
|
39
39
|
else
|
|
40
|
-
s.add_dependency(%q<builder>, [">= 2.1.2"])
|
|
41
40
|
s.add_dependency(%q<color-tools>, [">= 1.3.0"])
|
|
42
41
|
end
|
|
43
42
|
else
|
|
44
|
-
s.add_dependency(%q<builder>, [">= 2.1.2"])
|
|
45
43
|
s.add_dependency(%q<color-tools>, [">= 1.3.0"])
|
|
46
44
|
end
|
|
47
45
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: Kelsin-lilygraph
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Giroir
|
|
@@ -12,16 +12,6 @@ cert_chain: []
|
|
|
12
12
|
date: 2009-08-19 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
|
-
- !ruby/object:Gem::Dependency
|
|
16
|
-
name: builder
|
|
17
|
-
type: :runtime
|
|
18
|
-
version_requirement:
|
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: 2.1.2
|
|
24
|
-
version:
|
|
25
15
|
- !ruby/object:Gem::Dependency
|
|
26
16
|
name: color-tools
|
|
27
17
|
type: :runtime
|
|
@@ -44,6 +34,7 @@ extra_rdoc_files:
|
|
|
44
34
|
files:
|
|
45
35
|
- LICENSE
|
|
46
36
|
- README
|
|
37
|
+
- Rakefile
|
|
47
38
|
- VERSION
|
|
48
39
|
- lib/lilygraph.rb
|
|
49
40
|
- lilygraph.gemspec
|