Skip to content

Instantly share code, notes, and snippets.

@tokiwoousaka
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokiwoousaka/802654fd6e4ab3ed2f0c to your computer and use it in GitHub Desktop.
Save tokiwoousaka/802654fd6e4ab3ed2f0c to your computer and use it in GitHub Desktop.
name: draw-poker
version: 0.1.0.0
synopsis: playing draw poker
description: for blog entry
homepage: http://tune.hateblo.jp/entry/2015/05/12/023112
license: BSD3
license-file: LICENSE
author: Tokiwo Ousaka
maintainer: its.out.of.tune.this.my.music@gmail.com
category: Game
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Game.Poker
, Game.Poker.Hands
, Game.Poker.Cards
build-depends: base >= 4.7 && < 5
, random-shuffle
, safe
default-language: Haskell2010
executable draw-poker
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, draw-poker
default-language: Haskell2010
test-suite draw-poker-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, draw-poker
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/tokiwoousaka/draw-poker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment