Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jurajkubelka/gt-collaborate
- Owner: JurajKubelka
- License: mit
- Created: 2016-07-25T16:44:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-11T22:06:13.000Z (over 7 years ago)
- Last Synced: 2024-10-31T13:45:58.475Z (about 2 months ago)
- Language: Smalltalk
- Size: 751 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
```