Skip to content
This repository has been archived by the owner on Sep 9, 2019. It is now read-only.

Commit

Permalink
Cleaning up gem related stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakjois committed May 25, 2008
1 parent 5e6cd1e commit 26ba8ea
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 13 deletions.
1 change: 1 addition & 0 deletions Manifest.txt
Expand Up @@ -4,6 +4,7 @@ Manifest.txt
README.txt
Rakefile
TODO
gchartrb.gemspec
lib/core_ext.rb
lib/example.rb
lib/gchartrb.rb
Expand Down
18 changes: 10 additions & 8 deletions README.txt
Expand Up @@ -2,7 +2,7 @@
http://code.google.com/p/gchartrb

== DESCRIPTION:

gchartrb is a Ruby wrapper around the Google Chart API, located at http://code.google.com/apis/chart/

Visit http://code.google.com/p/gchartrb to track development regarding gchartrb.
Expand All @@ -17,21 +17,23 @@ Visit http://code.google.com/p/gchartrb to track development regarding gchartrb.

sudo gem install gchartrb

=== Source Code:
=== Manual Download:

Download the latest release from http://code.google.com/p/gchartrb/downloads/list

=== Git
=== Git:
You can checkout the git repository at http://github.com/deepakjois/gchartrb

== Problems/TODO
== TODO:
The following features are pending :

* Line Styles
* Fill Area
* Data Scaling for text encoding
* Line Styles and Fill Areas
* Googleometer and Map Charts

* Data Scaling for Text Encoding
* Download Image
* Friendly Color Values
* Easy Calculations for Stuff
* Cleanup and DRY Validations

== SYNOPSIS:
TODO: write new
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -14,7 +14,7 @@ Hoe.new('gchartrb', "0.9") do |p|
p.author = 'Deepak Jois'
p.email = 'deepak.jois@gmail.com'
p.summary = 'Ruby Wrapper for the Google Chart API'
p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
p.description = p.paragraphs_of('README.txt', 2..3).join("\n\n")
p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
p.remote_rdoc_dir = ''
Expand Down
6 changes: 2 additions & 4 deletions TODO
@@ -1,11 +1,9 @@
TODO List (Features)
TODO List
====================
* Documentation!
* Line Styles and Fill Areas
* Googleometer and Map Charts
* Data Scaling for text encoding
* Add validations for height and width values (copy specs and implementation from GChart)
* Documentation!!!
* Change all examples and put them in different folders
* Download Image
* Friendly Color Values
* Easy calculations for Stuff that is needed
Expand Down
18 changes: 18 additions & 0 deletions gchartrb.gemspec
@@ -0,0 +1,18 @@
Gem::Specification.new do |s|
s.name = "gchartrb"
s.version = "0.9"
s.authors = ["Deepak Jois"]
s.email = "deepak.jois@gmail.com"
s.date = "2008-05-25"
s.homepage = "http://code.google.com/p/gchartrb"
s.summary = "Ruby Wrapper for the Google Chart API"
s.description = "gchartrb is a Ruby wrapper around the Google Chart API, located at http://code.google.com/apis/chart/. Visit http://code.google.com/p/gchartrb to track development regarding gchartrb."

s.has_rdoc = true
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.rdoc_options = ["--main", "README.txt"]
s.files = ["CREDITS", "History.txt", "Manifest.txt", "README.txt", "Rakefile", "TODO", "gchartrb.gemspec", "lib/core_ext.rb", "lib/example.rb", "lib/gchartrb.rb", "lib/google_chart.rb", "lib/google_chart/bar_chart.rb", "lib/google_chart/base.rb", "lib/google_chart/line_chart.rb", "lib/google_chart/linexy_chart.rb", "lib/google_chart/modules/axis.rb", "lib/google_chart/modules/color.rb", "lib/google_chart/modules/data_array.rb", "lib/google_chart/modules/fills.rb", "lib/google_chart/modules/grid.rb", "lib/google_chart/modules/label.rb", "lib/google_chart/modules/legend.rb", "lib/google_chart/modules/markers.rb", "lib/google_chart/pie_chart.rb", "lib/google_chart/radar_chart.rb", "lib/google_chart/scatter_plot.rb", "lib/google_chart/sparkline_chart.rb", "lib/google_chart/venn_diagram.rb", "lib/test.rb", "spec/gchartrb/axis_spec.rb", "spec/gchartrb/bar_chart_spec.rb", "spec/gchartrb/fills_spec.rb", "spec/gchartrb/grid_spec.rb", "spec/gchartrb/line_chart_spec.rb", "spec/gchartrb/linexy_chart_spec.rb", "spec/gchartrb/markers_spec.rb", "spec/gchartrb/pie_chart_spec.rb", "spec/gchartrb/radar_chart_spec.rb", "spec/gchartrb/scatter_plot_spec.rb", "spec/gchartrb/sparkline_chart_spec.rb", "spec/gchartrb/venn_diagram_spec.rb", "spec/gchartrb_spec.rb", "spec/helper.rb", "spec/spec.opts"]
s.require_paths = ["lib"]
s.rubyforge_project = "gchartrb"
s.rubygems_version = "1.1.1"
end

0 comments on commit 26ba8ea

Please sign in to comment.