gossip

Version, currently master branch1 version
  • master branchlatestNov 3, 2018

github.com/proxima/gossip-crystal

Crystal client for the Gossip MUD Chat Network

2 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  gossip:
    github: proxima/gossip-crystal
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.26.1
License
MIT
Author
Christopher Lee

Dependencies

This version declares no dependencies.

README

gossip

Gossip is a shard for integrating MUDs with the Gossip inter-mud chat network.

Installation

Add this to your application's shard.yml:

dependencies:
  gossip:
    github: proxima/gossip-crystal

Usage

require "gossip"

client = Gossip::Client.new "mud-name", "client-id", "client-secret"
spawn client.run

Enable verbose logging

client.verbose = true

Optionally, you can provide Gossip::Client a Proc which returns the MUD's online players.

client.player_list = ->{ ["Player1", "Player2"] }

or

client.player_list = ->{ acquire_player_list_somehow(); }

You can also use the client to inform Gossip of login/logoffs in real-time.

client.player_login.send "Player Two"
client.player_logoff.send "Player One"

Listen to broadcasts from other MUDs

spawn do
  loop do
    msg = client.broadcast.receive
  end
end

Development

TODO: tells (send/receive) TODO: reconnects, raise errors when disconnected

Contributing

  1. Fork it (https://github.com/your-github-user/gossip-crystal/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • proxima Christopher Lee - creator, maintainer