https://github.com/ferperales/number_guess_game
A game
https://github.com/ferperales/number_guess_game
Last synced: 3 months ago
JSON representation
A game
- Host: GitHub
- URL: https://github.com/ferperales/number_guess_game
- Owner: FerPerales
- License: mit
- Created: 2020-05-07T17:46:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T22:48:09.000Z (about 5 years ago)
- Last Synced: 2025-02-18T05:18:28.756Z (4 months ago)
- Language: Ruby
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# NumberGuessGame
This gem contains the logic to play a guessing number game
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'number_guess_game'
```And then execute:
$ bundle install
Or install it yourself as:
$ gem install number_guess_game
## Usage
There are two ways:
You can run a command-line interface by running:
```ruby
NumberGuessGame::Runner.start
```or, you can create a game by running:
```ruby
game = NumberGuessGame::GuessNumber.new(number_to_guess, max_tries)
```Where:
* number_to_guess: the number the player is going to guess
* max_tries: the maximum number of guesses a player can tryThat creates an instance of the game. To make a new guess, run this:
```ruby
game.number_guessed?(value_to_guess)
```Where:
* value_to_guess: if the guess the user is doingThe game will return..
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/ferperales/number_guess_game. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/ferperales/number_guess_game/blob/master/CODE_OF_CONDUCT.md).
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the NumberGuessGame project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ferperales/number_guess_game/blob/master/CODE_OF_CONDUCT.md).