-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-polyglot.gemspec
More file actions
36 lines (28 loc) · 1.27 KB
/
Copy pathgithub-polyglot.gemspec
File metadata and controls
36 lines (28 loc) · 1.27 KB
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
31
32
33
34
35
36
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'github-polyglot'
spec.version = '0.1.0'
spec.summary = '(Unofficial) Language stats for the GitHub user'
spec.description = '(Unofficial) Fetches and aggregates language usage statistics for a GitHub user'
spec.authors = 'Spenser Black'
spec.homepage = 'https://github.com/spenserblack/github-polyglot'
spec.license = 'MIT'
spec.files = Dir['lib/**/*'] + Dir['exe/*'] + Dir['LICENSE*'] + Dir['README*']
spec.require_paths = ['lib']
spec.bindir = 'exe'
spec.executables = ['github-polyglot']
spec.required_ruby_version = Gem::Requirement.new('>= 3.2')
spec.metadata = {
'homepage_uri' => spec.homepage,
'source_code_uri' => spec.homepage,
'github_repo' => spec.homepage,
'rubygems_mfa_required' => 'true'
}
spec.add_dependency 'dotenv', '~> 3.2'
# NOTE: For octokit
spec.add_dependency 'faraday-retry', '~> 2.4'
spec.add_dependency 'github-linguist', '~> 9.3'
spec.add_dependency 'json', '~> 2.18'
spec.add_dependency 'nokogiri', '~> 1.18', '>= 1.18.10'
spec.add_dependency 'octokit', '~> 10.0'
end