-
Notifications
You must be signed in to change notification settings - Fork 242
/
lazy_high_charts.gemspec
36 lines (29 loc) · 1.3 KB
/
lazy_high_charts.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
28
29
30
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
version = File.read(File.expand_path("../GEM_VERSION", __FILE__)).strip
Gem::Specification.new do |s|
s.name = "lazy_high_charts"
s.version = version
s.platform = Gem::Platform::RUBY
s.authors = ['Miguel Michelson', 'Deshi Xiao']
s.email = ['[email protected]', '[email protected]']
s.homepage = "https://github.com/michelson/lazy_high_charts"
s.summary = "rubyist way to render variant chart by highcharts without write javascript right now, rails gem library."
s.description = "lazy_high_charts is leading edge rubyist render charts gem for displaying Highcharts graphs."
s.extra_rdoc_files = ["README.md", "CHANGELOG.md"]
s.rdoc_options = ["--charset=UTF-8"]
key = File.expand_path("~/.ssh/gem-private_key.pem")
if File.exist?(key)
s.signing_key = key
s.cert_chain = ["gem-public_cert.pem"]
end
s.required_rubygems_version = ">= 1.3"
s.add_development_dependency "bundler", ">= 1.0"
s.add_dependency "hash-deep-merge"
s.description = <<-DESC
lazy_high_charts is leading edge rubyist render charts gem for displaying Highcharts graphs.
DESC
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select { |f| f =~ /^bin/ }
s.require_path = 'lib'
end