| Copyright | © 2015-2017 Stack Builders |
|---|---|
| License | MIT |
| Maintainer | Justin Leitgeb <justin@stackbuilders.com> |
| Stability | experimental |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
System.Hapistrano.Types
Description
Type definitions for the Hapistrano tool.
Synopsis
- type Hapistrano a = ExceptT Failure (ReaderT Config IO) a
- data Failure = Failure Int (Maybe String)
- data Config = Config {
- configSshOptions :: !(Maybe SshOptions)
- configPrint :: !(OutputDest -> String -> IO ())
- data Task = Task {}
- data ReleaseFormat
- data SshOptions = SshOptions {}
- data OutputDest
- data Release
- data TargetSystem
- mkRelease :: ReleaseFormat -> UTCTime -> Release
- releaseTime :: Release -> UTCTime
- renderRelease :: Release -> String
- parseRelease :: String -> Maybe Release
Documentation
Hapistrano configuration options.
Constructors
| Config | |
Fields
| |
The records describes deployment task.
Constructors
| Task | |
Fields
| |
data ReleaseFormat Source #
Release format mode.
Constructors
| ReleaseShort | Standard release path following Capistrano's format |
| ReleaseLong | Long release path including picoseconds |
Instances
data SshOptions Source #
SSH options.
Constructors
| SshOptions | |
Instances
| Eq SshOptions Source # | |
Defined in System.Hapistrano.Types | |
| Ord SshOptions Source # | |
Defined in System.Hapistrano.Types Methods compare :: SshOptions -> SshOptions -> Ordering # (<) :: SshOptions -> SshOptions -> Bool # (<=) :: SshOptions -> SshOptions -> Bool # (>) :: SshOptions -> SshOptions -> Bool # (>=) :: SshOptions -> SshOptions -> Bool # max :: SshOptions -> SshOptions -> SshOptions # min :: SshOptions -> SshOptions -> SshOptions # | |
| Read SshOptions Source # | |
Defined in System.Hapistrano.Types Methods readsPrec :: Int -> ReadS SshOptions # readList :: ReadS [SshOptions] # readPrec :: ReadPrec SshOptions # readListPrec :: ReadPrec [SshOptions] # | |
| Show SshOptions Source # | |
Defined in System.Hapistrano.Types Methods showsPrec :: Int -> SshOptions -> ShowS # show :: SshOptions -> String # showList :: [SshOptions] -> ShowS # | |
data OutputDest Source #
Output destination.
Constructors
| StdoutDest | |
| StderrDest |
Instances
Release indentifier.
data TargetSystem Source #
Target's system where application will be deployed