Skip to content

Instantly share code, notes, and snippets.

@tgirardi
Last active August 29, 2015 14:24
Show Gist options
  • Save tgirardi/f048238972220accd724 to your computer and use it in GitHub Desktop.
Save tgirardi/f048238972220accd724 to your computer and use it in GitHub Desktop.
Diagrama de Flujo de Trabajo que Uso para Programar Stories
![Diagrama](http://g.gravizo.com/g?
digraph G {
splines=true; esep=20; K=0.1;
node[shape="box"]
init[label="Iniciar%5CnTrabajo%5CnStory",shape="invhouse"]
a[label="Entender story"]
b[label="Diagnosticar / Diseñar"]
c[label="Crear nuevo branch"]
d[label="Desarrollar specs mocha"]
e[label="¡Pull Diario!"]
e2[label="Spec no se cumple"]
e3[label="Programar"]
e4[label="¿Cumple ahora%5Cnel spec?",shape="diamond"]
e4n[label="¿No estará mal%5Cnprogramada la prueba?",style="dotted"]
e5[label="Hacer Commit"]
e6[label="¿Hay otro spec%5Cn(mismo story)?",shape="diamond"]
e7[label="Pasar al siguiente spec"]
e8[label="¿Nuevo día?",shape="diamond"]
f[label="Hacer pruebas manuales"]
g[label="Verificar que no haya quiebres"]
h[label="Probar compatibilidad multi-plataforma"]
i[label="Documentar & Comentar"]
j[label="Formatear & Lintear &%5CnCumplir Style Guides"]
k[label="Commits Finales"]
l[label="Empujar branch &%5CnHacer Pull Request"]
fin[label="Fin%5CnTrabajo%5CnStory",shape="house"]
init->a
a->b
b->c
c->d
d->e
e->e2
e2->e3
e3->p1[style="invis"]
p1[shape="point",style="invis",height=1, width=1, fixedsize="true"]
p1->e4[style="invis"]
e3->e4
e4->e3[label="No"]
{rank="same"; e4->e4n[style="dotted",arrowhead="none"]}
e4->e5[label="Si"]
e5->e6
e6->f[label="No"]
f->g
g->h
h->i
i->j
j->k
k->l
{rank="same"; e6->e7[label="Si"]}
{rank="same"; e7->e8;}
e8->e[label="Si"]
e8->e2[label="No"]
l->fin
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment