-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjekyll-github-chart.gemspec
More file actions
24 lines (19 loc) · 1010 Bytes
/
jekyll-github-chart.gemspec
File metadata and controls
24 lines (19 loc) · 1010 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_relative 'lib/jekyll-github-chart/version'
Gem::Specification.new do |spec|
spec.name = "jekyll-github-chart"
spec.version = JekyllGithubChart::VERSION
spec.authors = ["kinduff"]
spec.email = ["abarcadabra@gmail.com"]
spec.summary = %q{Generate an SVG of Github contributions data for Jekyll}
spec.description = %q{Uses GithubChart to convert a liquid tag into a Github contribution SVG}
spec.homepage = "https://github.com/kinduff/jekyll-github-chart"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/kinduff/jekyll-github-chart"
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.add_runtime_dependency 'jekyll'
spec.add_runtime_dependency 'githubchart', '~> 3.1.1'
end