BFD 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +2 -0
- data/LICENSE +674 -0
- data/LICENSE.README +8 -0
- data/README +48 -0
- data/examples/bfd_info.rb +30 -0
- data/examples/list_sections.rb +25 -0
- data/examples/list_symbols.rb +25 -0
- data/lib/BFD.rb +468 -0
- data/module/BFD.c +388 -0
- data/module/BFD.h +68 -0
- data/module/extconf.rb +14 -0
- data/module/rdoc_input/BFD.rb +266 -0
- data/module/ruby_compat.c +17 -0
- data/module/ruby_compat.h +28 -0
- data/tests/ut_bfd.rb +597 -0
- metadata +70 -0
metadata
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: BFD
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.3.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- TG Community
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2010-10-11 00:00:00 -04:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description: |-
|
|
17
|
+
BFD is the Binary File Descriptor object used by
|
|
18
|
+
GNU binutils. This extension provides a barebones BFD wrapper which
|
|
19
|
+
allows binary files to be accessed as BFD objects from within Ruby.
|
|
20
|
+
email: community@thoughtgang.org
|
|
21
|
+
executables: []
|
|
22
|
+
|
|
23
|
+
extensions:
|
|
24
|
+
- module/extconf.rb
|
|
25
|
+
extra_rdoc_files:
|
|
26
|
+
- module/rdoc_input/BFD.rb
|
|
27
|
+
files:
|
|
28
|
+
- module/BFD.c
|
|
29
|
+
- module/ruby_compat.c
|
|
30
|
+
- module/BFD.h
|
|
31
|
+
- module/ruby_compat.h
|
|
32
|
+
- lib/BFD.rb
|
|
33
|
+
- examples/list_sections.rb
|
|
34
|
+
- examples/list_symbols.rb
|
|
35
|
+
- examples/bfd_info.rb
|
|
36
|
+
- README
|
|
37
|
+
- ChangeLog
|
|
38
|
+
- LICENSE
|
|
39
|
+
- LICENSE.README
|
|
40
|
+
- module/rdoc_input/BFD.rb
|
|
41
|
+
has_rdoc: true
|
|
42
|
+
homepage: http://rubyforge.org/projects/opdis/
|
|
43
|
+
licenses:
|
|
44
|
+
- GPLv3
|
|
45
|
+
post_install_message:
|
|
46
|
+
rdoc_options: []
|
|
47
|
+
|
|
48
|
+
require_paths:
|
|
49
|
+
- lib
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 1.8.7
|
|
55
|
+
version:
|
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: "0"
|
|
61
|
+
version:
|
|
62
|
+
requirements:
|
|
63
|
+
- GNU binutils library and headers
|
|
64
|
+
rubyforge_project: opdis
|
|
65
|
+
rubygems_version: 1.3.5
|
|
66
|
+
signing_key:
|
|
67
|
+
specification_version: 3
|
|
68
|
+
summary: Ruby extension library providing an API to GNU BFD
|
|
69
|
+
test_files:
|
|
70
|
+
- tests/ut_bfd.rb
|