-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathgithubchart.gemspec
More file actions
24 lines (20 loc) · 847 Bytes
/
githubchart.gemspec
File metadata and controls
24 lines (20 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'English'
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'githubchart/version'
Gem::Specification.new do |s|
s.name = 'githubchart'
s.version = GithubChart::VERSION
s.summary = 'Generate an SVG of Github contributions data'
s.description = 'Uses GithubStats to grab Github contributions scores and converts that into an SVG'
s.authors = ['Les Aker']
s.email = 'me@lesaker.org'
s.homepage = 'https://github.com/akerl/githubchart'
s.license = 'MIT'
s.files = `git ls-files`.split
s.executables = ['githubchart']
s.add_runtime_dependency 'githubstats', '~> 4.0.1'
s.add_runtime_dependency 'matrix', '~> 0.4.2'
s.add_runtime_dependency 'svgplot', '~> 1.0.0'
s.add_development_dependency 'goodcop', '~> 0.9.7'
s.metadata['rubygems_mfa_required'] = 'true'
end