-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevin_api.gemspec
More file actions
29 lines (23 loc) · 1.11 KB
/
devin_api.gemspec
File metadata and controls
29 lines (23 loc) · 1.11 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
# frozen_string_literal: true
require_relative 'lib/devin_api/version'
Gem::Specification.new do |spec|
spec.name = 'devin_api'
spec.version = DevinApi::VERSION
spec.authors = ['Masato Sugiyama']
spec.email = ['public@smasato.net']
spec.summary = 'Unofficial Ruby client for the Devin API'
spec.description = 'Unofficial Ruby client library for the Devin API'
spec.homepage = 'https://github.com/smasato/devin_api_client_rb'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/smasato/devin_api_client_rb'
spec.metadata['changelog_uri'] = 'https://github.com/smasato/devin_api_client_rb/blob/main/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.glob('lib/**/*') + %w[README.md LICENSE CHANGELOG.md]
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '~> 2.7'
spec.add_dependency 'faraday-multipart', '~> 1.0'
spec.add_dependency 'hashie', '~> 5.0'
spec.add_dependency 'inflection', '~> 1.0'
end