Files
metasploit-gs/lib/net/ssh/ruby_compat.rb
T

7 lines
97 B
Ruby
Raw Normal View History

class String
if RUBY_VERSION < "1.9"
def getbyte(index)
self[index]
end
end
end