-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-shikimori-oauth2.gemspec
39 lines (33 loc) · 1.18 KB
/
omniauth-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
# frozen_string_literal: true
require_relative 'lib/omniauth/shikimori/version'
Gem::Specification.new do |spec|
spec.name = 'omniauth-shikimori-oauth2'
spec.version = OmniAuth::Shikimori::VERSION
spec.authors = ['Ivan Naumov']
spec.email = ['[email protected]']
spec.summary = 'OmnAuth strategy for Shikimori'
spec.description = 'Strategy to authenticate with Shikimori via OAuth2 in OmniAuth.'
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',
'omniauth-shikimori-oauth2.gemspec',
# Code
'lib/omniauth-shikimori-oauth2.rb',
'lib/omniauth/**/*',
# Signatures
'sig/omniauth/**/*'
]
spec.bindir = 'bin'
spec.executables = []
spec.require_paths = ['lib']
spec.add_dependency 'omniauth-oauth2', '~> 1.8'
spec.add_dependency 'shikimori-oauth2', '~> 1.0'
end