mixtli-flex_chart 0.1.2 → 0.1.6
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 +2 -0
- data/Rakefile +16 -9
- data/VERSION +1 -0
- data/flex/FlexChart.mxml +4 -0
- data/flex_chart.gemspec +24 -12
- data/public/swfs/FlexChart.swf +0 -0
- metadata +16 -21
data/.gitignore
ADDED
data/Rakefile
CHANGED
@@ -1,16 +1,23 @@
|
|
1
1
|
# Rakefile
|
2
2
|
require 'rubygems'
|
3
3
|
require 'rake'
|
4
|
-
require 'echoe'
|
4
|
+
#require 'echoe'
|
5
5
|
|
6
|
-
Echoe.new('flex_chart', '0.1.2') do |p|
|
7
|
-
p.description = "Interface to Flex Charting Components"
|
8
|
-
p.url = "http://github.com/mixtli/flex_chart"
|
9
|
-
p.author = "Ron McClain"
|
10
|
-
p.email = "mixtli@github.com"
|
11
|
-
p.ignore_pattern = ["tmp/*", "script/*"]
|
12
|
-
p.development_dependencies = []
|
13
|
-
end
|
14
6
|
|
15
7
|
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
|
16
8
|
|
9
|
+
|
10
|
+
begin
|
11
|
+
require 'jeweler'
|
12
|
+
Jeweler::Tasks.new do |gemspec|
|
13
|
+
gemspec.name = "flex_chart"
|
14
|
+
gemspec.summary = "Ruby interface to Flex Charting component"
|
15
|
+
gemspec.email = "mixtli@github.com"
|
16
|
+
gemspec.homepage = "http://github.com/mixtli/flex_chart"
|
17
|
+
gemspec.description = "Ruby interface to Flex Charting component"
|
18
|
+
gemspec.authors = ["Ron McClain"]
|
19
|
+
end
|
20
|
+
rescue LoadError
|
21
|
+
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
22
|
+
end
|
23
|
+
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.6
|
data/flex/FlexChart.mxml
CHANGED
@@ -88,6 +88,10 @@
|
|
88
88
|
}
|
89
89
|
chart.setStyle("color", int(result.color));
|
90
90
|
chart.setStyle("fill", int(result.fill_color));
|
91
|
+
chart.setStyle("paddingLeft", 0);
|
92
|
+
chart.setStyle("paddingRight", 0);
|
93
|
+
chart.setStyle("paddingTop", 0);
|
94
|
+
chart.setStyle("paddingBottom", 0);
|
91
95
|
x_axis.title = x_label;
|
92
96
|
chart.horizontalAxis = x_axis;
|
93
97
|
y_axis.title = y_label;
|
data/flex_chart.gemspec
CHANGED
@@ -2,26 +2,38 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{flex_chart}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.6"
|
6
6
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">=
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Ron McClain"]
|
9
|
-
s.date = %q{2009-
|
10
|
-
s.description = %q{
|
9
|
+
s.date = %q{2009-06-06}
|
10
|
+
s.description = %q{Ruby interface to Flex Charting component}
|
11
11
|
s.email = %q{mixtli@github.com}
|
12
|
-
s.extra_rdoc_files = [
|
13
|
-
|
14
|
-
|
12
|
+
s.extra_rdoc_files = [
|
13
|
+
"README.rdoc"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
".gitignore",
|
17
|
+
"Manifest",
|
18
|
+
"README.rdoc",
|
19
|
+
"Rakefile",
|
20
|
+
"VERSION",
|
21
|
+
"flex/FlexChart.mxml",
|
22
|
+
"flex_chart.gemspec",
|
23
|
+
"init.rb",
|
24
|
+
"lib/flex_chart.rb",
|
25
|
+
"public/swfs/FlexChart.swf",
|
26
|
+
"tasks/flex_chart.rake"
|
27
|
+
]
|
15
28
|
s.homepage = %q{http://github.com/mixtli/flex_chart}
|
16
|
-
s.rdoc_options = ["--
|
29
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
17
30
|
s.require_paths = ["lib"]
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.summary = %q{Interface to Flex Charting Components}
|
31
|
+
s.rubygems_version = %q{1.3.3}
|
32
|
+
s.summary = %q{Ruby interface to Flex Charting component}
|
21
33
|
|
22
34
|
if s.respond_to? :specification_version then
|
23
35
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
|
-
s.specification_version =
|
36
|
+
s.specification_version = 3
|
25
37
|
|
26
38
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
27
39
|
else
|
data/public/swfs/FlexChart.swf
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mixtli-flex_chart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ron McClain
|
@@ -9,11 +9,11 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-06-06 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
16
|
+
description: Ruby interface to Flex Charting component
|
17
17
|
email: mixtli@github.com
|
18
18
|
executables: []
|
19
19
|
|
@@ -21,28 +21,23 @@ extensions: []
|
|
21
21
|
|
22
22
|
extra_rdoc_files:
|
23
23
|
- README.rdoc
|
24
|
-
- tasks/flex_chart.rake
|
25
|
-
- lib/flex_chart.rb
|
26
24
|
files:
|
27
|
-
-
|
25
|
+
- .gitignore
|
28
26
|
- Manifest
|
27
|
+
- README.rdoc
|
28
|
+
- Rakefile
|
29
|
+
- VERSION
|
30
|
+
- flex/FlexChart.mxml
|
31
|
+
- flex_chart.gemspec
|
29
32
|
- init.rb
|
33
|
+
- lib/flex_chart.rb
|
30
34
|
- public/swfs/FlexChart.swf
|
31
|
-
- flex/FlexChart.mxml
|
32
35
|
- tasks/flex_chart.rake
|
33
|
-
|
34
|
-
- Rakefile
|
35
|
-
- flex_chart.gemspec
|
36
|
-
has_rdoc: true
|
36
|
+
has_rdoc: false
|
37
37
|
homepage: http://github.com/mixtli/flex_chart
|
38
38
|
post_install_message:
|
39
39
|
rdoc_options:
|
40
|
-
- --
|
41
|
-
- --inline-source
|
42
|
-
- --title
|
43
|
-
- Flex_chart
|
44
|
-
- --main
|
45
|
-
- README.rdoc
|
40
|
+
- --charset=UTF-8
|
46
41
|
require_paths:
|
47
42
|
- lib
|
48
43
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -55,14 +50,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
50
|
requirements:
|
56
51
|
- - ">="
|
57
52
|
- !ruby/object:Gem::Version
|
58
|
-
version: "
|
53
|
+
version: "0"
|
59
54
|
version:
|
60
55
|
requirements: []
|
61
56
|
|
62
|
-
rubyforge_project:
|
57
|
+
rubyforge_project:
|
63
58
|
rubygems_version: 1.2.0
|
64
59
|
signing_key:
|
65
|
-
specification_version:
|
66
|
-
summary:
|
60
|
+
specification_version: 3
|
61
|
+
summary: Ruby interface to Flex Charting component
|
67
62
|
test_files: []
|
68
63
|
|