-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgreen_day.gemspec
35 lines (29 loc) · 1.13 KB
/
green_day.gemspec
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'green_day/version'
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 3.2.1'
spec.name = 'green_day'
spec.executables = ['green_day']
spec.version = GreenDay::VERSION
spec.authors = ['qwyng']
spec.email = ['ikusawasi@gmail.com']
spec.summary = 'CLI tool for AtCoder and Ruby'
spec.description = 'CLI tool for AtCoder and Ruby'
spec.homepage = 'https://github.com/QWYNG/green_day'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = 'exe'
spec.require_paths = ['lib']
spec.add_dependency 'colorize'
spec.add_dependency 'faraday'
spec.add_dependency 'faraday-cookie_jar'
spec.add_dependency 'nokogiri'
spec.add_dependency 'thor'
spec.metadata['rubygems_mfa_required'] = 'true'
end