Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/juliendelplanque/minesweeper
- Owner: juliendelplanque
- License: mit
- Created: 2016-11-10T13:10:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-21T19:21:03.000Z (about 8 years ago)
- Last Synced: 2024-10-31T07:05:22.679Z (2 months ago)
- Language: Smalltalk
- Size: 47.9 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.