-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpatchelf.gemspec
More file actions
35 lines (29 loc) · 1.12 KB
/
patchelf.gemspec
File metadata and controls
35 lines (29 loc) · 1.12 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'patchelf/version'
Gem::Specification.new do |s|
s.name = 'patchelf'
s.version = PatchELF::VERSION
s.summary = 'patchelf'
s.description = <<-EOS
A simple utility for modifying existing ELF executables and
libraries.
EOS
s.license = 'MIT'
s.authors = ['david942j']
s.email = ['david942j@gmail.com']
s.files = Dir['lib/**/*.rb'] + Dir['bin/*'] + %w[README.md LICENSE]
s.homepage = 'https://github.com/david942j/patchelf.rb'
s.executables = ['patchelf.rb']
s.required_ruby_version = '>= 3.1'
s.add_dependency 'elftools', '>= 1.3'
s.add_dependency 'logger', '~> 1'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'rubocop', '~> 1'
s.add_development_dependency 'simplecov', '>= 0.22'
s.add_development_dependency 'tty-platform', '~> 0.1'
s.add_development_dependency 'yard', '~> 0.9'
s.metadata['rubygems_mfa_required'] = 'true'
end