-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory_locker.gemspec
More file actions
28 lines (23 loc) · 989 Bytes
/
memory_locker.gemspec
File metadata and controls
28 lines (23 loc) · 989 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
# frozen_string_literal: true
require_relative "lib/memory_locker/version"
Gem::Specification.new do |spec|
spec.name = "memory_locker"
spec.version = MemoryLocker::VERSION
spec.authors = ["Paweł Pokrywka"]
spec.summary = "Lock memory containing sensitive data to prevent it from being swapped by the kernel"
spec.homepage = "https://github.com/phantom-node/memory_locker"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/phantom-node/memory_locker/blob/master/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = ["CHANGELOG.md", "LICENSE.txt", "README.md"]
spec.files += Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").select do |f|
f.match(%r{\A(?:lib)/})
end
end
spec.require_paths = ["lib"]
end