-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathragweed.gemspec
91 lines (86 loc) · 2.75 KB
/
ragweed.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ragweed"
s.version = "0.2.9"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["tduehr", "struct", "tqbf"]
s.date = "2012-07-23"
s.description = "General debugging tool written in Ruby for OSX/Win32/Linux"
s.email = "[email protected]"
s.extra_rdoc_files = [
"README.rdoc",
"README.txt"
]
s.files = [
"History.txt",
"README.rdoc",
"README.txt",
"Rakefile",
"VERSION",
"examples/hittracertux.rb",
"examples/hittracerx.rb",
"examples/hook_notepad.rb",
"examples/snicker.rb",
"examples/tux-example.rb",
"lib/ragweed.rb",
"lib/ragweed/arena.rb",
"lib/ragweed/blocks.rb",
"lib/ragweed/debugger32.rb",
"lib/ragweed/debuggerosx.rb",
"lib/ragweed/debuggertux.rb",
"lib/ragweed/detour.rb",
"lib/ragweed/ptr.rb",
"lib/ragweed/rasm.rb",
"lib/ragweed/rasm/bblock.rb",
"lib/ragweed/rasm/isa.rb",
"lib/ragweed/sbuf.rb",
"lib/ragweed/trampoline.rb",
"lib/ragweed/utils.rb",
"lib/ragweed/wrap32.rb",
"lib/ragweed/wrap32/debugging.rb",
"lib/ragweed/wrap32/device.rb",
"lib/ragweed/wrap32/event.rb",
"lib/ragweed/wrap32/hooks.rb",
"lib/ragweed/wrap32/overlapped.rb",
"lib/ragweed/wrap32/process.rb",
"lib/ragweed/wrap32/process_token.rb",
"lib/ragweed/wrap32/thread_context.rb",
"lib/ragweed/wrap32/winx.rb",
"lib/ragweed/wrap32/wrap32.rb",
"lib/ragweed/wraposx.rb",
"lib/ragweed/wraposx/constants.rb",
"lib/ragweed/wraposx/kernelerrorx.rb",
"lib/ragweed/wraposx/region_info.rb",
"lib/ragweed/wraposx/structs.rb",
"lib/ragweed/wraposx/thread_context.rb",
"lib/ragweed/wraposx/thread_info.rb",
"lib/ragweed/wraposx/wraposx.rb",
"lib/ragweed/wraptux.rb",
"lib/ragweed/wraptux/constants.rb",
"lib/ragweed/wraptux/process.rb",
"lib/ragweed/wraptux/threads.rb",
"lib/ragweed/wraptux/wraptux.rb",
"ragweed.gemspec",
"spec/ragweed_spec.rb",
"spec/spec_helper.rb",
"test/test_ragweed.rb"
]
s.homepage = "http://www.matasano.com/research/ragweed/"
s.rdoc_options = ["--inline-source", "--line-numbers", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Scriptable debugger"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<ffi>, ["~> 1.0"])
else
s.add_dependency(%q<ffi>, ["~> 1.0"])
end
else
s.add_dependency(%q<ffi>, ["~> 1.0"])
end
end