forked from winston/google_visualr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_visualr.gemspec
25 lines (21 loc) · 1.18 KB
/
google_visualr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/google_visualr/version", __FILE__)
Gem::Specification.new do |s|
s.name = "google_visualr"
s.version = GoogleVisualr::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Winston Teo"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/winston/google_visualr"
s.summary = "A Ruby wrapper around the Google Chart Tools that allows anyone to create the same beautiful charts with just plain Ruby."
s.description = "This Ruby gem, GoogleVisualr, is a wrapper around the Google Chart Tools that allows anyone to create the same beautiful charts with just Ruby; you don't have to write any JavaScript at all."
s.extra_rdoc_files = ["README.rdoc"]
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "google_visualr"
s.add_development_dependency "bundler", ">= 1.0.15"
s.add_development_dependency "rspec" , ">= 2.6.0"
s.add_development_dependency "rails" , ">= 3.0.9"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end