https://github.com/agilecreativity/ruby-spike-template
https://github.com/agilecreativity/ruby-spike-template
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/agilecreativity/ruby-spike-template
- Owner: agilecreativity
- Created: 2013-12-16T05:55:07.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-08T02:25:41.000Z (over 12 years ago)
- Last Synced: 2025-03-30T05:01:58.656Z (over 1 year ago)
- Language: Ruby
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.