We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9dbfb8 commit 2434382Copy full SHA for 2434382
ice-cube.cabal
@@ -1,5 +1,5 @@
1
name: ice-cube
2
-version: 0.1.0.0
+version: 0.2.0.0
3
-- synopsis:
4
-- description:
5
homepage: https://github.com/hmac/ice-cube#readme
@@ -15,7 +15,7 @@ cabal-version: >=1.10
15
16
library
17
hs-source-dirs: src
18
- exposed-modules: Lib
+ exposed-modules: IceCube
19
build-depends: base >= 4.7 && < 5
20
, dates
21
, business
src/Lib.hs src/IceCube.hssrc/Lib.hs renamed to src/IceCube.hs
@@ -1,7 +1,7 @@
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE StandaloneDeriving #-}
-module Lib
+module IceCube
( Schedule(..)
6
, Rule(..)
7
, diffToNextMatch
test/Spec.hs
import Test.Hspec
import Data.Dates
-import Lib
+import IceCube
main :: IO ()
main =
0 commit comments