-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundleup-sdk.gemspec
More file actions
36 lines (29 loc) · 1.32 KB
/
bundleup-sdk.gemspec
File metadata and controls
36 lines (29 loc) · 1.32 KB
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
# frozen_string_literal: true
require_relative 'lib/bundleup/version'
Gem::Specification.new do |spec|
spec.name = 'bundleup-sdk'
spec.version = BundleUp::VERSION
spec.authors = ['BundleUp']
spec.email = ['support@bundleup.io']
spec.summary = 'Official Ruby SDK for BundleUp'
spec.description = 'Ruby client library for the BundleUp API'
spec.homepage = 'https://github.com/bundleup/bundleup-sdk-ruby'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7.0'
spec.metadata = {
'homepage_uri' => spec.homepage,
'source_code_uri' => 'https://github.com/bundleup/bundleup-sdk-ruby',
'changelog_uri' => 'https://github.com/bundleup/bundleup-sdk-ruby/blob/main/CHANGELOG.md',
'rubygems_mfa_required' => 'true'
}
spec.files = Dir['lib/**/*', 'LICENSE', 'README.md', 'CHANGELOG.md']
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.12'
spec.add_development_dependency 'rubocop', '~> 1.50'
spec.add_development_dependency 'rubocop-rake', '~> 0.6'
spec.add_development_dependency 'rubocop-rspec', '~> 2.20', '< 2.26'
spec.add_development_dependency 'vcr', '~> 6.1'
spec.add_development_dependency 'webmock', '~> 3.18'
end