-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgithubstats.gemspec
More file actions
26 lines (21 loc) · 953 Bytes
/
githubstats.gemspec
File metadata and controls
26 lines (21 loc) · 953 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
25
26
require 'English'
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'githubstats/version'
Gem::Specification.new do |s|
s.name = 'githubstats'
s.version = GithubStats::VERSION
s.required_ruby_version = '>= 2.6.0'
s.summary = 'Present Github contributions stats in a consumable format'
s.description = 'Pulls the statistics from Github\'s user contribution chart and provides an interface for analyzing that data' # rubocop:disable Layout/LineLength
s.authors = ['Les Aker']
s.email = 'me@lesaker.org'
s.homepage = 'https://github.com/akerl/githubstats'
s.license = 'MIT'
s.files = `git ls-files`.split
s.executables = ['githubstats']
s.add_dependency 'basiccache', '~> 1.0.0'
s.add_dependency 'nokogiri', '~> 1.15.3'
s.add_development_dependency 'goodcop', '~> 0.9.9'
s.add_development_dependency 'timecop', '~> 0.9.6'
s.metadata['rubygems_mfa_required'] = 'true'
end