summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-01-12 20:33:36 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2014-01-12 20:33:36 -0800
commitf4e1c6bf5c7976e7903d4a8aac503834626643de (patch)
tree5285dda5f726ea6c42e06fa445984cbd310c041e /lib
parent0cc58f677238a09aefd8544de665fc9afc24fe30 (diff)
downloadffi-yajl-f4e1c6bf5c7976e7903d4a8aac503834626643de.tar.gz
the rbx work fixed ruby-1.8 c-ext
Diffstat (limited to 'lib')
-rw-r--r--lib/ffi_yajl/ext.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ffi_yajl/ext.rb b/lib/ffi_yajl/ext.rb
index 30f79bd..7b6d3de 100644
--- a/lib/ffi_yajl/ext.rb
+++ b/lib/ffi_yajl/ext.rb
@@ -3,10 +3,10 @@ require 'rubygems'
require 'ffi_yajl/encoder'
require 'ffi_yajl/parser'
-unless RUBY_VERSION.to_f >= 1.9
- # segfaults on ruby 1.8 and this is an exceedingly low priority to fix, use ffi instead
- raise NotImplementedError, "The C-extension is disabled on Ruby 1.8"
-end
+#unless RUBY_VERSION.to_f >= 1.9
+# # segfaults on ruby 1.8 and this is an exceedingly low priority to fix, use ffi instead
+# raise NotImplementedError, "The C-extension is disabled on Ruby 1.8"
+#end
module FFI_Yajl
class Parser