This repository was archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcipherstash-client.gemspec
More file actions
50 lines (40 loc) · 1.8 KB
/
cipherstash-client.gemspec
File metadata and controls
50 lines (40 loc) · 1.8 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
begin
require 'git-version-bump'
rescue LoadError
nil
end
Gem::Specification.new do |s|
s.name = "cipherstash-client"
s.version = GVB.version rescue "0.0.0.1.NOGVB"
s.date = GVB.date rescue Time.now.strftime("%Y-%m-%d")
s.platform = Gem::Platform::RUBY
s.summary = "Official client for the CipherStash encrypted searchable data store"
s.authors = ["Dan Draper"]
s.email = ["dan@cipherstash.com"]
s.homepage = "https://cipherstash.com"
s.files = `git ls-files -z`.split("\0").reject { |f| f =~ /^(G|spec|Rakefile)/ }
s.required_ruby_version = ">= 2.7.0"
s.metadata["homepage_uri"] = s.homepage
s.metadata["source_code_uri"] = "https://github.com/cipherstash/ruby-client"
s.metadata["changelog_uri"] = "https://github.com/cipherstash/ruby-client/releases"
s.metadata["bug_tracker_uri"] = "https://github.com/cipherstash/ruby-client/issues"
s.metadata["documentation_uri"] = "https://rubydoc.info/gems/cipherstash-client"
s.metadata["mailing_list_uri"] = "https://discuss.cipherstash.com"
s.add_runtime_dependency "aws-sdk-core", "~> 3.0"
s.add_runtime_dependency "aws-sdk-kms", "~> 1.0"
s.add_runtime_dependency 'cbor', '~> 0.5.9.6'
s.add_runtime_dependency "cipherstash-grpc", "= 0.20220928.0"
s.add_runtime_dependency "enveloperb", "~> 0.0"
s.add_runtime_dependency "launchy", "~> 2.5"
s.add_runtime_dependency "ore-rs", "~> 0.0"
s.add_development_dependency 'bundler'
s.add_development_dependency 'fakefs'
s.add_development_dependency 'github-release'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rb-inotify', '~> 0.9'
s.add_development_dependency 'redcarpet'
s.add_development_dependency 'rspec'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'yard'
end