forked from jeremyolliver/gvis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gvis.gemspec
27 lines (23 loc) · 1.08 KB
/
gvis.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
26
27
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "gvis/version"
Gem::Specification.new do |s|
s.name = "gvis"
s.version = Gvis::VERSION
s.platform = Gem::Platform::RUBY
s.author = "Jeremy Olliver"
s.email = "[email protected]"
s.homepage = "http://github.com/jeremyolliver/gvis"
s.summary = "Easily embed charts with Google Visualization API"
s.description = "Easily embed charts with Google Visualization API, using ruby formatted options in your view files"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency 'json'
s.add_development_dependency 'bundler'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rcov'
# Although this runs on rails 3, I'm only specifying this as development dependency for now,
# (instead of runtime dependency) since rails can be vendored and need not be installed/required as gems
s.add_development_dependency 'actionpack', '> 3.0.0'
end