An open API service indexing awesome lists of open source software.

https://github.com/agilecreativity/ruby-spike-template


https://github.com/agilecreativity/ruby-spike-template

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

Ruby Starter Template for BDD/TDD
=================================

Start your spike project quickly with the following tools

- [rspec](https://github.com/rspec/rspec)
- [guard-rspec](https://github.com/guard/guard-rspec)
- [pry](https://github.com/pry/pry)
- [pry-editline](https://github.com/tpope/pry-editline)
- [pry-debugger](https://github.com/nixme/pry-debugger)
- [awesome_print](https://github.com/michaeldv/awesome_print)

Instruction:
===========

```shell
git clone https://github.com/agilecreativity/ruby-spike-template.git
cd ruby-spike-template
bundle
bundle install --binstubs
```
- Open new terminal or new tmux session

```text
one for your `lib/spike.rb`
one for your `spec/spike_spec.rb`
one for your `bin/guard`
```

- Start Guard

```
./bin/guard
```

- Spike away your idea.