Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dvg/bradley_fizzbuzz
A test driven fizzbuzz gem
https://github.com/dvg/bradley_fizzbuzz
Last synced: 14 days ago
JSON representation
A test driven fizzbuzz gem
- Host: GitHub
- URL: https://github.com/dvg/bradley_fizzbuzz
- Owner: DVG
- License: mit
- Created: 2012-12-06T14:02:27.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-06T14:19:19.000Z (almost 12 years ago)
- Last Synced: 2024-04-14T03:59:46.225Z (7 months ago)
- Language: Ruby
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE.txt
Awesome Lists containing this project
README
# BradleyFizzbuzz [![Build Status](https://secure.travis-ci.org/DVG/bradley_fizzbuzz.png?branch=master)](https://travis-ci.org/DVG/bradley_fizzbuzz)
BradleyFizzbuzz, a gemified, test-driven fizzbuzz gem.
## Installation
Add this line to your application's Gemfile:
gem 'bradley_fizzbuzz'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bradley_fizzbuzz
## Usage
```ruby
[1, 2, 3, 4, 5].fizzbuzz # => [1, 2, "fizz", 4, "buzz"]
(1..5).fizzbuzz # => [1, 2, "fizz", 4, "buzz"]
[15].fizzbuzz # => ["fizzbuzz"]
1.fizz? # => false
3.fizz? # => true
5.fizz? # => false
3.buzz? # => false
5.buzz? # => true
1.fizzbuzz? # => false
15.fizzbuzz? # => true
```Additionally `print_fizzbuzz` will send all the values for a given array or range to `$stdout`
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request