Sha256: c717f9d4b986a014b4e8fbdff092d02072c414dcd919095bc7db61182afcbe41
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
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.date = Time.now.strftime("%Y-%m-%d") 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.test_files = `git ls-files spec/*`.split s.executables = ['githubchart'] s.add_runtime_dependency 'githubstats', '~> 3.2.0' s.add_runtime_dependency 'svgplot', '~> 1.0.0' s.add_development_dependency 'goodcop', '~> 0.9.3' s.add_development_dependency 'rake', '~> 13.0.0' s.add_development_dependency 'codecov', '~> 0.1.1' s.add_development_dependency 'rspec', '~> 3.9.0' s.add_development_dependency 'fuubar', '~> 2.5.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
githubchart-3.3.1 | githubchart.gemspec |