https://github.com/renderedtext/kata-base
A minimal setup to do a code kata in Ruby with RSpec.
https://github.com/renderedtext/kata-base
Last synced: about 1 year ago
JSON representation
A minimal setup to do a code kata in Ruby with RSpec.
- Host: GitHub
- URL: https://github.com/renderedtext/kata-base
- Owner: renderedtext
- Created: 2011-01-19T09:02:15.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2013-09-27T13:57:10.000Z (over 12 years ago)
- Last Synced: 2025-02-02T02:28:54.436Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 113 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kata-base
A minimal setup to do a code kata in Ruby with RSpec.
### How to use this
There's a pair of files `spec/kata_spec.rb` and `lib/kata.rb` where you can start writing code.
When adding new files, the only thing to keep in mind is to `require 'filename'` in the corresponding spec.
Run all specs with `bundle exec rspec`.