GoGoGo

GoGoGo creates a single, workflow-friendly Ruby file to quickly test your ideas.

Great for

Features

Usage

Run the gogogo command and pass it the project name.

$ gogogo my_project

This will create the following file structure:

my_project/
├── .rspec
├── Gemfile
├── Guardfile
└── my_project.rb

Then run bundle install and bundle exec guard to auto-run tests on save.

$ bundle install
$ bundle exec guard

Then begin writing code with blazingly fast feedback loops, all in one file: my_project.rb.

Forked from rubynew