From 9d217025fac3e335c308f02e7377e14ccfdc0e66 Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Wed, 17 Apr 2013 17:48:50 +0300 Subject: Initial commit Silly for shit-and-giggles attempt at rancid --- lib/oxidized/fix/grit.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/oxidized/fix/grit.rb (limited to 'lib/oxidized/fix/grit.rb') diff --git a/lib/oxidized/fix/grit.rb b/lib/oxidized/fix/grit.rb new file mode 100644 index 0000000..49be76b --- /dev/null +++ b/lib/oxidized/fix/grit.rb @@ -0,0 +1,18 @@ +Object.send :remove_const, :PACK_IDX_SIGNATURE +PACK_IDX_SIGNATURE = "\377tOc".b + +class String + if self.method_defined?(:ord) + def getord(offset); self[offset].ord; end + else + alias :getord :[] + end + + unless self.method_defined?(:b) + if self.method_defined?(:force_encoding) + def b; self.dup.force_encoding(Encoding::ASCII_8BIT); end + else + def b; self.dup; end + end + end +end -- cgit v1.2.1