forked from restforce/restforce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestforce.gemspec
More file actions
31 lines (25 loc) · 1.21 KB
/
restforce.gemspec
File metadata and controls
31 lines (25 loc) · 1.21 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
# 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 = ["me@timrogers.co.uk", "eric@ejholmes.net"]
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.test_files = gem.files.grep(%r{^(test|spec|features)/})
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'
}
gem.required_ruby_version = '>= 2.6'
gem.add_dependency 'faraday', '<= 2.0', '>= 0.9.0'
gem.add_dependency 'faraday_middleware', ['>= 0.8.8', '<= 2.0']
gem.add_dependency 'hashie', '>= 1.2.0', '< 5.0'
gem.add_dependency 'jwt', ['>= 1.5.6']
end