Versions in this module Expand all Collapse all v1 v1.0.1 Aug 7, 2014 v1.0.0 Aug 6, 2014 Changes in this version + type App struct + Branches map[string][]*Branch + Name string + Script string + Secret []byte + func NewApp(name string) *App + func (a *App) AddBranch(ref, script string) *Branch + func (a *App) HmacEqual(msg []byte, msgSig string) (bool, error) + type Branch struct + Script string + UpdateQueue chan string + func NewBranch(script string) *Branch + func (b *Branch) LoopQueue() + func (b *Branch) QueueUpdate() error + func (b *Branch) RunScript() ([]byte, error) + func (b *Branch) Update() + type ConfigTOML struct + Apps map[string]struct{ ... } + type Freddo struct + Apps map[string]*App + func NewFreddo(configFile string) (*Freddo, error) + func (f *Freddo) UpdateApp(c web.C, w http.ResponseWriter, req *http.Request) + type WebhookPayload struct + Ref string