implemented tsuru deploy plugin.

This commit is contained in:
Andrews Medina
2014-03-22 23:22:01 -03:00
parent 3b3da0424e
commit 6ccc1729fb
2 changed files with 42 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ type Deploy struct {
Nodejitsu *Nodejitsu `yaml:"nodejitsu,omitempty"`
Openshift *Openshift `yaml:"openshift,omitempty"`
SSH *SSH `yaml:"ssh,omitempty"`
Tsuru *Tsuru `yaml:"tsuru,omitempty"`
}
func (d *Deploy) Write(f *buildfile.Buildfile) {
@@ -51,4 +52,7 @@ func (d *Deploy) Write(f *buildfile.Buildfile) {
if d.SSH != nil {
d.SSH.Write(f)
}
if d.Tsuru != nil {
d.Tsuru.Write(f)
}
}