Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/juliendelplanque/minesweeper

A Mine Sweeper game implementation in Pharo.
https://github.com/juliendelplanque/minesweeper

Last synced: 16 days ago
JSON representation

A Mine Sweeper game implementation in Pharo.

Awesome Lists containing this project

README

        

# MineSweeper [![Build Status](https://travis-ci.org/juliendelplanque/MineSweeper.svg?branch=master)](https://travis-ci.org/juliendelplanque/MineSweeper)
A Mine Sweeper game implementation in Pharo.

# How to install
## Minimal installation
To install only the core of the game and the unit tests:
```
Metacello new
baseline:'MineSweeper';
repository: 'github://juliendelplanque/MineSweeper:master/repository';
load: 'core'
```

## Seaside (minimal) frontend
To install the game with its minimal web-frontend:
```
Metacello new
baseline:'MineSweeper';
repository: 'github://juliendelplanque/MineSweeper:master/repository';
load: 'seaside'
```

Once loaded, add a `ZnZincServerAdaptor` in the Seaside Control Panel and
go to [http://localhost:8080/minesweeper](http://localhost:8080/minesweeper).

# Development note
I use GitFileTree to manage this repository from Pharo, if you want to contribute
please use it as well.