Skip to content

Latest commit

 

History

History
59 lines (34 loc) · 1.43 KB

README.md

File metadata and controls

59 lines (34 loc) · 1.43 KB

Talker plugins

Newsline's Talker plugins.

You have to manually install any plugins you want by copy-pasting the code from this repo.

Available plugins

You can install one of the plugins by opening it's JavaScript source and copying it to a new plugin after logging in to Talker.

Markup

Replaces things inside backticks with monospaced font. Just like Markdown.

CI colorizer

Cleans up messages from our CI.

Screenshot

Github Links

Makes links to Github look cooler and less noisy.

Screenshot

JIRA Linker

(Beta). Links to JIRA issues for the LINK product.

Development

Install npm and grunt, then run npm install in the project root. You can then use grunt to compile the files:

$ brew install npm
$ npm install -g grunt
$ npm install
$ grunt

When developing you can use grunt to watch for changes and automatically compiling them:

$ grunt watch

Tests

Tests are still run with the Ruby jasmine gem. :-(

$ gem install jasmine
$ rake jasmine

This should be converted to mocha and then run using grunt some day.