worf 1.0.0

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/worf.gemspec ADDED
@@ -0,0 +1,15 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "worf"
3
+ s.version = "1.0.0"
4
+ s.summary = "Parse DWARF information in Ruby"
5
+ s.description = "Tired of parsing DWARF information in C? Now you can parse DWARF information in Ruby!"
6
+ s.authors = ["Aaron Patterson"]
7
+ s.email = "tenderlove@ruby-lang.org"
8
+ s.files = `git ls-files -z`.split("\x0")
9
+ s.test_files = s.files.grep(%r{^test/})
10
+ s.homepage = "https://github.com/tenderlove/worf"
11
+ s.license = "Apache-2.0"
12
+ s.add_development_dependency 'minitest', '~> 5.14'
13
+ s.add_development_dependency 'rake', '~> 13.0'
14
+ s.add_development_dependency 'odinflex', '~> 1.0'
15
+ end
metadata ADDED
@@ -0,0 +1,116 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: worf
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Patterson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-07-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: minitest
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '5.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '5.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: odinflex
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ description: Tired of parsing DWARF information in C? Now you can parse DWARF information
56
+ in Ruby!
57
+ email: tenderlove@ruby-lang.org
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - Gemfile
63
+ - LICENSE
64
+ - README.md
65
+ - Rakefile
66
+ - lib/worf.rb
67
+ - lib/worf/constants.erb
68
+ - lib/worf/constants.rb
69
+ - lib/worf/constants.yml
70
+ - test/dwarf_test.rb
71
+ - test/fixtures/a.out
72
+ - test/fixtures/a.out.dSYM/Contents/Info.plist
73
+ - test/fixtures/a.out.dSYM/Contents/Resources/DWARF/a.out
74
+ - test/fixtures/out.dSYM/Contents/Info.plist
75
+ - test/fixtures/out.dSYM/Contents/Resources/DWARF/out
76
+ - test/fixtures/slop.c
77
+ - test/fixtures/thing.c
78
+ - test/helper.rb
79
+ - test/mach_o_dwarf_integration_test.rb
80
+ - test/ruby_test.rb
81
+ - worf.gemspec
82
+ homepage: https://github.com/tenderlove/worf
83
+ licenses:
84
+ - Apache-2.0
85
+ metadata: {}
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubygems_version: 3.2.15
102
+ signing_key:
103
+ specification_version: 4
104
+ summary: Parse DWARF information in Ruby
105
+ test_files:
106
+ - test/dwarf_test.rb
107
+ - test/fixtures/a.out
108
+ - test/fixtures/a.out.dSYM/Contents/Info.plist
109
+ - test/fixtures/a.out.dSYM/Contents/Resources/DWARF/a.out
110
+ - test/fixtures/out.dSYM/Contents/Info.plist
111
+ - test/fixtures/out.dSYM/Contents/Resources/DWARF/out
112
+ - test/fixtures/slop.c
113
+ - test/fixtures/thing.c
114
+ - test/helper.rb
115
+ - test/mach_o_dwarf_integration_test.rb
116
+ - test/ruby_test.rb