This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 5db6c1ea2838a780be802b411342edde23919422
tree 7bab81653e779d5a8f476f208b0eb834c5e9a739
parent a69e441d11d6ab4be0a94438884fdd73bd9e32f4
tree 7bab81653e779d5a8f476f208b0eb834c5e9a739
parent a69e441d11d6ab4be0a94438884fdd73bd9e32f4
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
History.txt | ||
| |
Manifest.txt | ||
| |
PostInstall.txt | ||
| |
README.txt | ||
| |
Rakefile | ||
| |
lib/ | ||
| |
ruby-googlechart.gemspec | ||
| |
script/ | ||
| |
spec/ | ||
| |
tasks/ |
README.txt
= ruby-googlechart * http://github.com/jparker/ruby-googlechart == DESCRIPTION: ruby-googlechart is a ruby library which provides object-oriented access to the Google Charts API. This library has largely been done as an exercise. These other ruby libraries are more mature and may be better suited to your needs: * http://googlecharts.rubyforge.org/ * http://code.google.com/p/gchartrb/ == FEATURES/PROBLEMS: * Limited support for Line and Bar charts == SYNOPSIS: url = GoogleChart::Line.new(:data => [1, nil, 2, 8, 1]).to_url url = GoogleChart::Line.new do |c| c.type = :line c.size = '800x375' c.data = [335, 285, 240, 220, 160, 175, 200, 205] c.scale = 0..400 c.encoding = :extended c.title = 'Chart Title' end.to_url == REQUIREMENTS: * newgem >= 1.0.3 * hoe >= 1.8.0 == INSTALL: * sudo gem install jparker-ruby-googlechart -s http://gems.github.com/ == LICENSE: (The MIT License) Copyright (c) 2008 John Parker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.








