-
Notifications
You must be signed in to change notification settings - Fork 5
/
dub.gemspec
35 lines (29 loc) · 1.06 KB
/
dub.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
Gem::Specification.new do |s|
s.name = 'dub'
s.version = '0.2.2-alpha.49'
s.platform = Gem::Platform::RUBY
s.licenses = ['Apache-2.0']
s.summary = ''
s.homepage = 'https://github.com/dubinc/dub-ruby.git'
s.description = 'Ruby Client SDK Generated by Speakeasy'
s.authors = ['Dub']
s.metadata = {
'homepage_uri' => 'https://github.com/dubinc/dub-ruby.git',
'documentation_uri' => 'https://github.com/dubinc/dub-ruby.git',
'source_code_uri' => 'https://github.com/dubinc/dub-ruby.git'
}
s.files = Dir['{lib,test}/**/*']
s.require_paths = ['lib']
s.required_ruby_version = '>= 3.0'
s.add_dependency('faraday')
s.add_dependency('faraday-multipart')
s.add_dependency('rack')
s.add_dependency('rake')
s.add_dependency('sorbet-runtime')
s.add_development_dependency('minitest')
s.add_development_dependency('rubocop', '~> 1.60.2')
s.add_development_dependency('sorbet')
s.add_development_dependency('tapioca')
end