-
Notifications
You must be signed in to change notification settings - Fork 0
/
tvdb_api.gemspec
26 lines (21 loc) · 918 Bytes
/
tvdb_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
# frozen_string_literal: true
version = File.read(File.expand_path('VERSION', __dir__)).strip
Gem::Specification.new do |spec|
spec.name = 'tvdb_api'
spec.version = version
spec.required_ruby_version = '>= 3.2'
spec.summary = 'A Ruby wrapper for the TVDB.org API'
spec.description = 'Provides a convenient way to interact with the TVDB API.'
spec.author = ['Stephen McCullough']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/swmcc/tvdb_api'
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '~> 1.0'
spec.add_dependency 'json', '~> 2.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 1.60'
spec.add_development_dependency 'webmock', '~> 3.19'
spec.metadata['rubygems_mfa_required'] = 'true'
end