From 8dea42e7dcbe85c993268e97511561ce9cc0fee2 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Mon, 13 Oct 2014 21:23:15 -0400 Subject: [PATCH] add properties/methods headers --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 9c95204..4279167 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,10 @@ for build in builds: ## API ### Environment(object) +#### Properties * `type` - string * `options` - mixed +#### Methods * `__init__(self, type, options)` * `__repr__(self)` * `as_dict(self)` @@ -44,7 +46,9 @@ for build in builds: * `as_yaml(self)` ### Script(object) +#### Properties * `commands` - list +#### Methods * `__init__(self, commands)` * `__repr__(self)` * `as_dict(self)` @@ -52,12 +56,14 @@ for build in builds: * `as_yaml(self)` ### Build(object) +#### Properties * `env` - Environment * `before_build` - Script * `build` - Script * `after_build` - Script * `after_success` - Script * `after_failure` - Script +#### Methods * `__init__(self, env, before_build, build, after_build, after_success, after_failure)` * `__repr__(self)` * `as_dict(self)`