15 lines
342 B
Ruby
15 lines
342 B
Ruby
|
# A Convenience to load all field classes and yaml handling.
|
||
|
# XXX: Pretty certian this monkeypatch isn't required in Metasploit.
|
||
|
|
||
|
if "a"[0].kind_of? Fixnum
|
||
|
unless Fixnum.methods.include? :ord
|
||
|
class Fixnum
|
||
|
def ord; self; end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
require 'bit-struct/bit-struct'
|
||
|
require 'bit-struct/fields'
|
||
|
require 'bit-struct/yaml'
|