forked from styd/apexcharts.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apexcharts.gemspec
30 lines (25 loc) · 1020 Bytes
/
apexcharts.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require_relative 'lib/apex_charts/version'
Gem::Specification.new do |spec|
spec.name = 'apexcharts'
spec.version = ApexCharts::VERSION
spec.authors = ['Adrian Setyadi']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/styd/apexcharts.rb'
spec.summary = 'Awesome charts for your ruby app'
spec.description =
'Create beautiful, interactive, and responsive web charts in ' \
'ruby app powered by apexcharts.js.'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(docs|examples|images|spec|\.github)/})
end
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'nokogiri'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'simplecov'
end