packages feed

hruby-0.2.3: hruby.cabal

-- Initial hruby.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

name:                hruby
version:             0.2.3
synopsis:            Embed Ruby in your Haskell program.
description:         Warning: this is completely experimental. Everything you need should be in "Foreign.Ruby".
license:             BSD3
license-file:        LICENSE
author:              Simon Marechal
maintainer:          bartavelle@gmail.com
-- copyright:           
category:            Language
build-type:          Custom
cabal-version:       >=1.8

source-repository head
  type: git
  location: git://github.com/bartavelle/hruby.git


library
  exposed-modules:      Foreign.Ruby, Foreign.Ruby.Bindings, Foreign.Ruby.Helpers, Foreign.Ruby.Safe
  ghc-options:          -Wall
  extensions:           BangPatterns, OverloadedStrings
  build-depends:        base >= 4.6 && < 4.8
                        , aeson                == 0.7.*
                        , bytestring           >= 0.10.0.2
                        , text                 >= 0.11
                        , attoparsec           >= 0.11 && < 0.12
                        , vector               >= 0.10 && < 0.11
                        , unordered-containers >= 0.2 && < 0.3
                        , stm                  >= 2.4 && < 2.5
                        , scientific           == 0.2.*
  c-sources:            cbits/shim.c
  install-includes:     cbits/shim.h
  include-dirs:         cbits

Test-Suite test-roundtrip
  hs-source-dirs: test
  type:           exitcode-stdio-1.0
  ghc-options:    -Wall
  extensions:     OverloadedStrings
  build-depends:  base,hruby,aeson,QuickCheck,text,attoparsec,vector
  main-is:        roundtrip.hs