packages feed

hruby 0.3.5 → 0.3.5.1

raw patch · 2 files changed

+3/−1 lines, 2 files

Files

Foreign/Ruby/Bindings.hsc view
@@ -97,7 +97,9 @@ foreign import ccall   safe "rb_funcall"                c_rb_funcall_3              :: RValue -> RID -> Int -> RValue -> RValue -> RValue -> IO RValue foreign import ccall   safe "rb_funcall"                c_rb_funcall_4              :: RValue -> RID -> Int -> RValue -> RValue -> RValue -> RValue -> IO RValue foreign import ccall   safe "rb_funcall"                c_rb_funcall_5              :: RValue -> RID -> Int -> RValue -> RValue -> RValue -> RValue -> RValue -> IO RValue+#ifdef RUBY2 foreign import ccall   safe "rb_funcall_with_block"     c_rb_funcall_with_block     :: RValue -> RID -> Int -> Ptr RValue -> RValue -> IO RValue+#endif foreign import ccall unsafe "rb_gv_get"                 c_rb_gv_get                 :: CString -> IO RValue foreign import ccall unsafe "rb_intern"                 c_rb_intern                 :: CString -> IO RID foreign import ccall unsafe "rb_id2name"                rb_id2name                  :: RID -> IO CString
hruby.cabal view
@@ -2,7 +2,7 @@ --  see http://haskell.org/cabal/users-guide/  name:                hruby-version:             0.3.5+version:             0.3.5.1 synopsis:            Embed a Ruby intepreter in your Haskell program ! description:         This doesn't work with Ruby 1.9. Everything you need should be in Foreign.Ruby.Safe. license:             BSD3