├── .gitignore ├── .ruby-version ├── Gemfile ├── README.md ├── examples ├── builder.yaml └── habitat.yaml ├── forkman-patch-git ├── forkman.rb └── habitat └── plan.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/README.md -------------------------------------------------------------------------------- /examples/builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/examples/builder.yaml -------------------------------------------------------------------------------- /examples/habitat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/examples/habitat.yaml -------------------------------------------------------------------------------- /forkman-patch-git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/forkman-patch-git -------------------------------------------------------------------------------- /forkman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/forkman.rb -------------------------------------------------------------------------------- /habitat/plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsirex/forkman/HEAD/habitat/plan.sh --------------------------------------------------------------------------------