在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):mwotton/Hubris开源软件地址(OpenSource Url):https://github.com/mwotton/Hubris开源编程语言(OpenSource Language):Haskell 50.9%开源软件介绍(OpenSource Introduction):HubrisON HIATUS/ABANDONEDI work mostly with Haskell now, so the utility of calling Haskell from Ruby is not very high. If you're interested in maintaining it, drop me a line - it should actually be a lot easier to operationalise it now, given cabal sandboxes, but I don't have the time. DescriptionHubris is a bridge between Ruby and Haskell, between love and bondage, between slothful indolence and raw, blazing speed. Hubris will wash your car, lie to your boss, and salvage your love life. If you are very, very lucky, it might also let you get some functional goodness into your ruby programs through the back door. I probably don't have to say this, but patches are very much welcome. If you have trouble installing it, tell me, and help me improve the docs. SynopsisThe best docs, as ever, are in the tests, but as a quick precis, you can use it a little like this: require 'hubris' # best line ever
class Target
hubris :inline =>"triple::Int->Int; triple n = 3*n"
end
t = Target.new
puts t.triple(10) #=> 30 There are a few restrictions. All functions take one argument and return one value: this shouldn't be a major problem because you can pass arrays of arguments in if you need more. Hubris can currently handle numbers, strings, basic types (like nil, true and false), arrays and hashes. There will probably be some Ruby structures (modules, regular expressions, etc) that won't ever be handled natively unless someone can convince me it's a sensible thing to do. Hubris will refuse to compile Haskell code that produces any warnings. You can suppress this admittedly fairly strict behaviour by passing the ":no_strict => true" flag, but in your heart of hearts you'll know you've done the wrong thing. There are also two other modes: hubris :source => "MyCoolModule.hs" which loads a source file on disk (in the same directory as your ruby), and hubris :module => "Data.ByteString", :packages => ["bytestring"] which will load the Data.ByteString module which is installed on the system. In this case, we also need to let the Haskell side know that we'll be using the "bytestring" package, so we pass that too: You may need to load extra packages with :inline and :source as well, and that's supported. Requirements
InstallBetter instructions for Linux and Mac Contributors
License
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论