-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnect_wise.gemspec
More file actions
29 lines (24 loc) · 893 Bytes
/
connect_wise.gemspec
File metadata and controls
29 lines (24 loc) · 893 Bytes
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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'connect_wise/version'
Gem::Specification.new do |s|
s.name = 'connect_wise'
s.version = ConnectWise::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Jared Moody']
s.email = ['jared@jetbuilt.com']
s.homepage = 'https://github.com/Jetbuilt/connect_wise'
s.summary = 'A ruby wrapper for the ConnectWise API'
s.description = 'OpenAPI generated wrapper for the ConnectWise API'
s.license = 'MIT'
s.required_ruby_version = '>= 3.2'
s.metadata['rubygems_mfa_required'] = 'true'
s.add_dependency 'faraday', '>= 1.0.1', '< 3.0'
s.add_dependency 'faraday-multipart'
s.add_dependency 'marcel', '~> 1.0'
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(docs|spec|templates)/})
end
s.executables = []
s.require_paths = ['lib']
end