forked from restforce/restforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
restforce.gemspec
33 lines (27 loc) · 1.3 KB
/
restforce.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
# frozen_string_literal: true
require File.expand_path('lib/restforce/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ["Tim Rogers", "Eric J. Holmes"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = 'A lightweight Ruby client for the Salesforce REST API'
gem.summary = 'A lightweight Ruby client for the Salesforce REST API'
gem.homepage = "https://restforce.github.io/"
gem.license = "MIT"
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.name = "restforce"
gem.require_paths = ["lib"]
gem.version = Restforce::VERSION
gem.metadata = {
'source_code_uri' => 'https://github.com/restforce/restforce',
'changelog_uri' => 'https://github.com/restforce/restforce/blob/master/CHANGELOG.md',
'rubygems_mfa_required' => 'true'
}
gem.required_ruby_version = '>= 2.7'
gem.add_dependency 'faraday', '< 2.7.0', '>= 1.1.0'
gem.add_dependency 'faraday-follow_redirects', '<= 0.3.0', '< 1.0.0'
gem.add_dependency 'faraday-multipart', '>= 1.0.0', '< 2.0.0'
gem.add_dependency 'faraday-net_http', '< 4.0.0'
gem.add_dependency 'hashie', '>= 1.2.0', '< 6.0'
gem.add_dependency 'jwt', ['>= 1.5.6']
end