mixtli-flex_chart 0.1.2 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ pkg
2
+ tmp
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.2"
5
+ s.version = "0.1.6"
6
6
 
7
- s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
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-04-14}
10
- s.description = %q{Interface to Flex Charting Components}
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 = ["README.rdoc", "tasks/flex_chart.rake", "lib/flex_chart.rb"]
13
- s.files = ["README.rdoc", "Manifest", "init.rb", "public/swfs/FlexChart.swf", "flex/FlexChart.mxml", "tasks/flex_chart.rake", "lib/flex_chart.rb", "Rakefile", "flex_chart.gemspec"]
14
- s.has_rdoc = true
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 = ["--line-numbers", "--inline-source", "--title", "Flex_chart", "--main", "README.rdoc"]
29
+ s.rdoc_options = ["--charset=UTF-8"]
17
30
  s.require_paths = ["lib"]
18
- s.rubyforge_project = %q{flex_chart}
19
- s.rubygems_version = %q{1.3.1}
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 = 2
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
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.2
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-04-14 00:00:00 -07:00
12
+ date: 2009-06-06 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: Interface to Flex Charting Components
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
- - README.rdoc
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
- - lib/flex_chart.rb
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
- - --line-numbers
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: "1.2"
53
+ version: "0"
59
54
  version:
60
55
  requirements: []
61
56
 
62
- rubyforge_project: flex_chart
57
+ rubyforge_project:
63
58
  rubygems_version: 1.2.0
64
59
  signing_key:
65
- specification_version: 2
66
- summary: Interface to Flex Charting Components
60
+ specification_version: 3
61
+ summary: Ruby interface to Flex Charting component
67
62
  test_files: []
68
63