-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathgoogle_visualr.gemspec
More file actions
19 lines (15 loc) · 876 Bytes
/
google_visualr.gemspec
File metadata and controls
19 lines (15 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "google_visualr/version"
Gem::Specification.new do |s|
s.name = "google_visualr"
s.version = GoogleVisualr::VERSION
s.authors = ["Winston Teo"]
s.email = ["winston.yongwei+google_visualr@gmail.com"]
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.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.license = 'MIT'
end