| Safe Haskell | None | 
|---|---|
| Language | Haskell2010 | 
Summoner.ProjectData
Synopsis
- data ProjectData = ProjectData {
- repo :: Text
 - owner :: Text
 - description :: Text
 - nm :: Text
 - email :: Text
 - year :: Text
 - category :: Text
 - licenseName :: LicenseName
 - licenseText :: License
 - github :: Bool
 - travis :: Bool
 - appVey :: Bool
 - isLib :: Bool
 - isExe :: Bool
 - test :: Bool
 - bench :: Bool
 - testedVersions :: [GhcVer]
 - base :: Text
 - prelude :: Maybe CustomPrelude
 - extensions :: [Text]
 - warnings :: [Text]
 - cabal :: Bool
 - stack :: Bool
 - stylish :: Maybe Text
 - contributing :: Maybe Text
 
 - data CustomPrelude = Prelude {}
 
Documentation
data ProjectData Source #
Data needed for project creation.
Constructors
| ProjectData | |
Fields 
  | |
Instances
| Show ProjectData Source # | |
Defined in Summoner.ProjectData Methods showsPrec :: Int -> ProjectData -> ShowS # show :: ProjectData -> String # showList :: [ProjectData] -> ShowS #  | |
data CustomPrelude Source #
Instances
| Eq CustomPrelude Source # | |
Defined in Summoner.ProjectData Methods (==) :: CustomPrelude -> CustomPrelude -> Bool # (/=) :: CustomPrelude -> CustomPrelude -> Bool #  | |
| Show CustomPrelude Source # | |
Defined in Summoner.ProjectData Methods showsPrec :: Int -> CustomPrelude -> ShowS # show :: CustomPrelude -> String # showList :: [CustomPrelude] -> ShowS #  | |