-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshikimori-api.gemspec
38 lines (33 loc) · 1.09 KB
/
shikimori-api.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
36
37
38
# frozen_string_literal: true
require_relative 'lib/shikimori/api/version'
Gem::Specification.new do |spec|
spec.name = 'shikimori-api'
spec.version = Shikimori::API::VERSION
spec.authors = ['Ivan Naumov']
spec.email = ['[email protected]']
spec.summary = 'Simple wrapper for the Shikimori API'
spec.description = 'Ruby toolkit for working with the Shikimori API'
spec.homepage = 'https://github.com/iwdt/shikikit'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['source_code_uri'] = 'https://github.com/iwdt/shikikit'
spec.metadata['bug_tracker_uri'] = 'https://github.com/iwdt/shikikit/issues'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir[
# Common files
'LICENSE',
'README.md',
'shikimori-api.gemspec',
# Code
'lib/shikimori-api.rb',
'lib/shikimori/api.rb',
'lib/shikimori/api/**/*',
# Signtures
'sig/shikimori/api.rbs',
'sig/shikimori/api/**/*'
]
spec.bindir = 'bin'
spec.executables = []
spec.require_paths = ['lib']
end