text-show-instances 3.0.1 → 3.2
raw patch · 72 files changed
+81/−76 lines, 72 filesdep ~text-showdep ~text-show-instances
Dependency ranges changed: text-show, text-show-instances
Files
- CHANGELOG.md +3/−0
- LICENSE +1/−1
- src/TextShow/Compiler/Hoopl.hs +1/−1
- src/TextShow/Control/Applicative/Trans.hs +1/−1
- src/TextShow/Control/Monad/Trans.hs +1/−1
- src/TextShow/Data/Bifunctor.hs +1/−1
- src/TextShow/Data/Binary.hs +1/−1
- src/TextShow/Data/Containers.hs +1/−1
- src/TextShow/Data/Functor/Trans.hs +1/−1
- src/TextShow/Data/Tagged.hs +1/−1
- src/TextShow/Data/Time.hs +1/−1
- src/TextShow/Data/UnorderedContainers.hs +1/−1
- src/TextShow/Data/Vector.hs +1/−1
- src/TextShow/Instances.hs +1/−1
- src/TextShow/Language/Haskell/TH.hs +1/−1
- src/TextShow/System/Console/Haskeline.hs +1/−1
- src/TextShow/System/Console/Terminfo.hs +1/−1
- src/TextShow/System/Directory.hs +1/−1
- src/TextShow/System/Locale.hs +1/−1
- src/TextShow/System/Posix.hs +1/−1
- src/TextShow/System/Random.hs +1/−1
- src/TextShow/System/Time.hs +1/−1
- src/TextShow/System/Win32.hs +1/−1
- src/TextShow/Text/PrettyPrint.hs +1/−1
- src/TextShow/Text/XHtml.hs +1/−1
- src/TextShow/Trace/Hpc.hs +1/−1
- src/TextShow/Utils.hs +1/−1
- tests/Instances/Compiler/Hoopl.hs +1/−1
- tests/Instances/Control/Applicative/Trans.hs +1/−1
- tests/Instances/Control/Monad/Trans.hs +1/−1
- tests/Instances/Data/Bifunctor.hs +1/−1
- tests/Instances/Data/Binary.hs +1/−1
- tests/Instances/Data/Containers.hs +1/−1
- tests/Instances/Data/Functor/Trans.hs +1/−1
- tests/Instances/Data/Tagged.hs +1/−1
- tests/Instances/Language/Haskell/TH.hs +1/−1
- tests/Instances/Miscellaneous.hs +1/−1
- tests/Instances/System/Console/Haskeline.hs +1/−1
- tests/Instances/System/Console/Terminfo.hs +1/−1
- tests/Instances/System/Directory.hs +1/−1
- tests/Instances/System/Locale.hs +1/−1
- tests/Instances/System/Posix.hs +1/−1
- tests/Instances/System/Random.hs +1/−1
- tests/Instances/System/Win32.hs +1/−1
- tests/Instances/Text/PrettyPrint.hs +1/−1
- tests/Instances/Text/XHtml.hs +1/−1
- tests/Instances/Trace/Hpc.hs +1/−1
- tests/Instances/Utils.hs +1/−1
- tests/Spec/Compiler/HooplSpec.hs +1/−1
- tests/Spec/Control/Applicative/TransSpec.hs +1/−1
- tests/Spec/Control/Monad/TransSpec.hs +1/−1
- tests/Spec/Data/BifunctorSpec.hs +1/−1
- tests/Spec/Data/BinarySpec.hs +1/−1
- tests/Spec/Data/ContainersSpec.hs +1/−1
- tests/Spec/Data/Functor/TransSpec.hs +1/−1
- tests/Spec/Data/TaggedSpec.hs +1/−1
- tests/Spec/Data/TimeSpec.hs +1/−1
- tests/Spec/Data/UnorderedContainersSpec.hs +1/−1
- tests/Spec/Language/Haskell/THSpec.hs +1/−1
- tests/Spec/System/Console/HaskelineSpec.hs +1/−1
- tests/Spec/System/Console/TerminfoSpec.hs +1/−1
- tests/Spec/System/DirectorySpec.hs +1/−1
- tests/Spec/System/LocaleSpec.hs +1/−1
- tests/Spec/System/PosixSpec.hs +1/−1
- tests/Spec/System/RandomSpec.hs +1/−1
- tests/Spec/System/TimeSpec.hs +1/−1
- tests/Spec/System/Win32Spec.hs +1/−1
- tests/Spec/Text/PrettyPrintSpec.hs +1/−1
- tests/Spec/Text/XHtmlSpec.hs +1/−1
- tests/Spec/Trace/HpcSpec.hs +1/−1
- tests/Spec/Utils.hs +5/−3
- text-show-instances.cabal +4/−4
CHANGELOG.md view
@@ -1,3 +1,6 @@+## 3.2+* Allow build with `text-show-3.2`+ ### 3.0.1 * Require quickcheck-instances >= 0.3.12 in test suite due to presence of new orphan Arbitrary instances for `vector` datatypes
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2014, Ryan Scott+Copyright (c) 2014-2016, Ryan Scott All rights reserved.
src/TextShow/Compiler/Hoopl.hs view
@@ -5,7 +5,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Compiler.Hoopl-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Control/Applicative/Trans.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Control.Applicative.Trans-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Control/Monad/Trans.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans -fno-warn-warnings-deprecations #-} {-| Module: TextShow.Control.Monad.Trans-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/Bifunctor.hs view
@@ -5,7 +5,7 @@ {-| Module: TextShow.Data.Bifunctor-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/Binary.hs view
@@ -4,7 +4,7 @@ {-| Module: TextShow.Data.Binary-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/Containers.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS -fno-warn-orphans #-} {-| Module: TextShow.Data.Containers-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/Functor/Trans.hs view
@@ -8,7 +8,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Data.Functor.Trans-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/Tagged.hs view
@@ -8,7 +8,7 @@ {-# OPTIONS -fno-warn-orphans #-} {-| Module: TextShow.Data.Tagged-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/Time.hs view
@@ -6,7 +6,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Data.Time-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/UnorderedContainers.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Data.UnorderedContainers-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Data/Vector.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Data.Vector-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Instances.hs view
@@ -6,7 +6,7 @@ {-| Module: TextShow.Instances-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Language/Haskell/TH.hs view
@@ -6,7 +6,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Language.Haskell.TH-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Console/Haskeline.hs view
@@ -4,7 +4,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.System.Console.Haskeline-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Console/Terminfo.hs view
@@ -7,7 +7,7 @@ {-| Module: TextShow.System.Console.Terminfo-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Directory.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.System.Directory-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Locale.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.System.Locale-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Posix.hs view
@@ -7,7 +7,7 @@ {-| Module: TextShow.System.Posix-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Random.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.System.Random-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Time.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.System.Time-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/System/Win32.hs view
@@ -7,7 +7,7 @@ {-| Module: TextShow.System.Win32-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Text/PrettyPrint.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Text.PrettyPrint-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Text/XHtml.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Text.XHtml-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Trace/Hpc.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Trace.Hpc-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
src/TextShow/Utils.hs view
@@ -2,7 +2,7 @@ {-| Module: TextShow.Utils-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Compiler/Hoopl.hs view
@@ -5,7 +5,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Compiler.Hoopl-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Control/Applicative/Trans.hs view
@@ -4,7 +4,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Control.Applicative.Trans-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Control/Monad/Trans.hs view
@@ -6,7 +6,7 @@ {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-} {-| Module: Instances.Control.Monad.Trans-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Data/Bifunctor.hs view
@@ -6,7 +6,7 @@ {-| Module: Instances.Data.Bifunctor-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Data/Binary.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Data.Binary-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Data/Containers.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Data.Containers-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Data/Functor/Trans.hs view
@@ -4,7 +4,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Data.Functor.Trans-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Data/Tagged.hs view
@@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Data.Tagged-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Language/Haskell/TH.hs view
@@ -7,7 +7,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Language.Haskell.TH-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Miscellaneous.hs view
@@ -4,7 +4,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Miscellaneous-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/System/Console/Haskeline.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.System.Console.Haskeline-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/System/Console/Terminfo.hs view
@@ -6,7 +6,7 @@ {-| Module: Instances.System.Console.Terminfo-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/System/Directory.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.System.Directory-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/System/Locale.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.System.Locale-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/System/Posix.hs view
@@ -7,7 +7,7 @@ {-| Module: Instances.System.Posix-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/System/Random.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.System.Random-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/System/Win32.hs view
@@ -8,7 +8,7 @@ {-| Module: Instances.System.Win32-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Text/PrettyPrint.hs view
@@ -4,7 +4,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Text.PrettyPrint-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Text/XHtml.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Text.XHtml-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Trace/Hpc.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: Instances.Trace.Hpc-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Instances/Utils.hs view
@@ -1,6 +1,6 @@ {-| Module: Instances.Utils-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Compiler/HooplSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Compiler.HooplSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Control/Applicative/TransSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Control.Applicative.TransSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Control/Monad/TransSpec.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-} {-| Module: Spec.Control.Monad.TransSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Data/BifunctorSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Data.BifunctorSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Data/BinarySpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Data.BinarySpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Data/ContainersSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Data.ContainersSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Data/Functor/TransSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Data.Functor.TransSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Data/TaggedSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Data.TaggedSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Data/TimeSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Data.TimeSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Data/UnorderedContainersSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Data.UnorderedContainersSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Language/Haskell/THSpec.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {-| Module: Spec.Language.Haskell.THSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/Console/HaskelineSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.System.Console.HaskelineSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/Console/TerminfoSpec.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {-| Module: Spec.System.Console.TerminfoSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/DirectorySpec.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {-| Module: Spec.System.DirectorySpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/LocaleSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.System.LocaleSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/PosixSpec.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {-| Module: Spec.System.PosixSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/RandomSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.System.RandomSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/TimeSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.System.TimeSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/System/Win32Spec.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {-| Module: Spec.System.Win32Spec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Text/PrettyPrintSpec.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {-| Module: Spec.Text.PrettyPrintSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Text/XHtmlSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Text.XHtmlSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Trace/HpcSpec.hs view
@@ -1,6 +1,6 @@ {-| Module: Spec.Trace.HpcSpec-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional
tests/Spec/Utils.hs view
@@ -3,7 +3,7 @@ {-| Module: Spec.Utils-Copyright: (C) 2014-2015 Ryan Scott+Copyright: (C) 2014-2016 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional@@ -68,13 +68,15 @@ -- | Verifies that a type's 'TextShow' instance coincides with the output produced -- by the equivalent 'Generic' functions.-prop_genericTextShow :: (TextShow a, Generic a, GTextShow (Rep a))+prop_genericTextShow :: (TextShow a, Generic a, GTextShow Zero (Rep a)) => Int -> a -> Bool prop_genericTextShow p x = showbPrec p x == genericShowbPrec p x -- | Verifies that a type's 'TextShow1' instance coincides with the output produced -- by the equivalent 'Generic1' functions.-prop_genericTextShow1 :: (TextShow1 f, Generic1 f, GTextShow1 (Rep1 f), TextShow a)+prop_genericTextShow1 :: ( TextShow1 f, Generic1 f+ , GTextShow One (Rep1 f), TextShow a+ ) => Int -> f a -> Bool prop_genericTextShow1 p x = showbPrec1 p x == genericLiftShowbPrec showbPrec showbList p x
text-show-instances.cabal view
@@ -1,5 +1,5 @@ name: text-show-instances-version: 3.0.1+version: 3.2 synopsis: Additional instances for text-show description: @text-show-instances@ is a supplemental library to @text-show@ that provides additional @Show@ instances for data types in@@ -62,7 +62,7 @@ author: Ryan Scott maintainer: Ryan Scott <ryan.gl.scott@gmail.com> stability: Experimental-copyright: (C) 2014-2015 Ryan Scott+copyright: (C) 2014-2016 Ryan Scott category: Text build-type: Simple tested-with: GHC == 7.0.4@@ -232,7 +232,7 @@ , tagged >= 0.4.4 && < 1 , template-haskell >= 2.5 && < 2.12 , text >= 0.11.1 && < 1.3- , text-show >= 3 && < 4+ , text-show >= 3.2 && < 4 , th-orphans >= 0.12 && < 1 , time >= 0.1 && < 1.7 , transformers >= 0.2.1 && < 0.6@@ -241,7 +241,7 @@ , vector >= 0.9 && < 0.12 , xhtml >= 3000.2 && < 3000.3 if !flag(developer)- build-depends: text-show-instances == 3.0.1+ build-depends: text-show-instances == 3.2 hs-source-dirs: tests if flag(developer)