-
Notifications
You must be signed in to change notification settings - Fork 0
/
tanker-core.gemspec
37 lines (30 loc) · 1.2 KB
/
tanker-core.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
34
35
36
37
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'tanker/core/version'
Gem::Specification.new do |spec|
spec.name = 'tanker-core'
spec.version = Tanker::Core::VERSION
spec.authors = ['Tanker team']
spec.summary = 'Ruby SDK for Tanker'
spec.description = <<~DESCRIPTION
Ruby bindings for the Tanker SDK.
Tanker is a platform as a service that allows you to easily protect your users' data with end-to-end encryption through a SDK
DESCRIPTION
spec.license = 'Apache-2.0'
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')
spec.metadata['rubygems_mfa_required'] = 'true'
spec.metadata['source_code_uri'] = 'https://github.com/TankerHQ/sdk-ruby'
# Specify which files should be added to the gem when it is released.
spec.files = Dir[
'README.rst',
'LICENSE',
'lib/**/*',
# Keep this in sync with run-ci.py
'vendor/tanker/linux-x86_64/libctanker.so',
'vendor/tanker/darwin-x86_64/libctanker.dylib',
'vendor/tanker/darwin-aarch64/libctanker.dylib',
]
spec.require_paths = ['lib']
spec.add_runtime_dependency 'faraday', '>= 0.17.5', '< 3.0.0'
spec.add_runtime_dependency 'ffi', '~> 1.13'
end