-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathruby-elf.gemspec
29 lines (25 loc) · 914 Bytes
/
ruby-elf.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
# -*- ruby -*- coding: utf-8 -*-
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'elf'
Gem::Specification.new do |s|
s.name = 'ruby-elf'
s.version = Elf::VERSION
s.summary = "Pure Ruby ELF file parser and utilities"
s.requirements << 'none'
s.require_path = 'lib'
s.homepage = "https://www.flameeyes.com/p/ruby-elf"
s.license = "GPL-2 or later"
s.author = "Diego Elio Pettenò"
s.email = "[email protected]"
s.description = <<EOF
Ruby-Elf is a pure-Ruby library for parse and fetch information about
ELF format used by Linux, FreeBSD, Solaris and other Unix-like
operating systems, and include a set of analysis tools helpful for
both optimisations and verification of compiled ELF files.
EOF
s.files = %w{COPYING README.md ruby-elf.gemspec}
s.files += Dir['lib/**/*.rb']
s.files += Dir['bin/**/*.rb']
s.files += Dir['tools/**/*.rb']
s.files += Dir['manpages/*.1']
end