-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshikimori-oauth2.gemspec
40 lines (34 loc) · 1.18 KB
/
shikimori-oauth2.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
39
40
# frozen_string_literal: true
require_relative 'lib/shikimori/oauth2/version'
Gem::Specification.new do |spec|
spec.name = 'shikimori-oauth2'
spec.version = Shikimori::OAuth2::VERSION
spec.authors = ['Ivan Naumov']
spec.email = ['[email protected]']
spec.summary = 'Simple wrapper for the Shikimori OAuth2'
spec.description = 'Ruby toolkit for working with the Shikimori OAuth2'
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-oauth2.gemspec',
# Code
'lib/shikimori-oauth2.rb',
'lib/shikimori/oauth2.rb',
'lib/shikimori/oauth2/**/*',
# Signtures
'sig/shikimori/oauth2.rbs',
'sig/shikimori/oauth2/**/*'
]
spec.bindir = 'bin'
spec.executables = []
spec.require_paths = ['lib']
spec.add_runtime_dependency 'oauth2', '~> 2.0.0'
end