Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jurajkubelka/gt-collaborate

Set of tools that permits collaboration in Pharo.
https://github.com/jurajkubelka/gt-collaborate

Last synced: 6 days ago
JSON representation

Set of tools that permits collaboration in Pharo.

Awesome Lists containing this project

README

        

# GT-Collaborate [![Build Status](https://travis-ci.org/JurajKubelka/GT-Collaborate.svg?branch=master)](https://travis-ci.org/JurajKubelka/GT-Collaborate)

This is legacy code. You can find new project called [PharoSprint](https://github.com/JurajKubelka/PharoSprint).

Set of tools that permits collaboration in Pharo.

## Description

Right now, it integrates [Pharo FogBugz issue tracker](http://pharo.fogbugz.com). You can open the application in [Pharo](http://pharo.org) (World menu / Collaboration / Your Journal), login to FogBugz, and see opened cases (issues) with details.

Login window:

![login window](images/readme/login.png)

Updating window (if there are no loaded issues):

![updating window](images/readme/updating.png)

Main window:

![main window](images/readme/main.png)

## Installation

It is under development. You can install development version in [Pharo 6](http://pharo.org).

```
Metacello new
baseline: #GTCollaborate;
repository: 'github://JurajKubelka/GT-Collaborate/repository';
load.
```

## Development

Download the latest [Pharo 6](http://pharo.org/download) and install:

```
Metacello new
baseline: 'FileTree';
repository: 'github://dalehenrich/filetree:pharo6.0_dev/repository';
load: 'Git'.
```

Download the project source code and execute in a playground following code:

```
Metacello new
baseline: #GTCollaborate;
repository: 'gitfiletree:///GT-Collaborate/repository';
load.
```