packages feed

hruby 0.3.4.3 → 0.3.4.4

raw patch · 2 files changed

+2/−2 lines, 2 filessetup-changed

Files

Setup.hs view
@@ -32,7 +32,7 @@ evalRuby exp = do     let getruby [] = return (ExitFailure 3, "beuh", undefined)         getruby (x:xs) = readProcessWithExitCode x ["-e", exp] "" `catch` \ (_ :: IOException) -> getruby xs-    (exitCode, out, err) <- getruby [ "ruby2.1", "ruby2.0", "ruby2", "ruby1.8", "ruby"]+    (exitCode, out, err) <- getruby [ "ruby.ruby2.4", "ruby2.4", "ruby2.1", "ruby2.0", "ruby2", "ruby1.8", "ruby"]     return $ if exitCode == ExitSuccess                then Just out                else Nothing
hruby.cabal view
@@ -2,7 +2,7 @@ --  see http://haskell.org/cabal/users-guide/  name:                hruby-version:             0.3.4.3+version:             0.3.4.4 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