https://github.com/dreamingechoes/simplelogica_the_game
A game developed in Ruby with the help of Gosu gem.
https://github.com/dreamingechoes/simplelogica_the_game
gamedev gosu ruby
Last synced: 11 months ago
JSON representation
A game developed in Ruby with the help of Gosu gem.
- Host: GitHub
- URL: https://github.com/dreamingechoes/simplelogica_the_game
- Owner: dreamingechoes
- License: mit
- Created: 2015-12-02T09:57:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-08-18T20:25:47.000Z (almost 5 years ago)
- Last Synced: 2025-04-24T05:10:00.227Z (about 1 year ago)
- Topics: gamedev, gosu, ruby
- Language: Ruby
- Size: 15.4 MB
- Stars: 22
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Simplelogica: The Game

## About
This is an example of a game developed in Ruby using the [Gosu](https://www.libgosu.org/) library. All the resources of the game (images, music and audio effects) are some mine and some extracted from [http://opengameart.org/](http://opengameart.org/).
## Install dependencies
Here are the pre-requisites to play this game (or be able to use Gosu):
* Mac OS X: [Getting Started on OS X](https://github.com/gosu/gosu/wiki/Getting-Started-on-OS-X#prerequisites)
* Linux: [Getting Started on Linux](https://github.com/gosu/gosu/wiki/Getting-Started-on-Linux#getting-started-on-linux)
* Windows: [Getting Started on Windows](https://github.com/gosu/gosu/wiki/Getting-Started-on-Windows#getting-started-on-windows)
## Getting Started
To start playing this game, you only have to:
* Install Ruby (using [RVM](https://github.com/rvm/rvm) or [RBenv](https://github.com/sstephenson/rbenv) or whatever).
* Clone the repo and execute ***bundle install***:
```sh
user@computer:~$ git clone git@github.com:dreamingechoes/simplelogica_the_game.git
user@computer:~$ cd simplelogica_the_game
user@computer:/simplelogica_the_game$ bundle install
```
## Usage
You can build the gem and install thr result to have the game available to execute whenever you want by executing:
```sh
user@computer:~$ cd simplelogica_the_game
user@computer:~$ gem build simplelogica_the_game.gemspec
user@computer:~$ gem install simplelogica_the_game-0.2.0.gem
```
Once you have done this, you can start the game by executing the binary:
```sh
user@computer:~$ simplelogica_the_game
```
Then follow the screen instructions, and have fun! 😊
----------------------------
This project was developed by [dreamingechoes](https://github.com/dreamingechoes).
It adheres to its [code of conduct](https://github.com/dreamingechoes/base/blob/master/files/CODE_OF_CONDUCT.md) and
[contributing guidelines](https://github.com/dreamingechoes/base/blob/master/files/CONTRIBUTING.md), and uses an equivalent [license](https://github.com/dreamingechoes/base/blob/master/files/LICENSE).