morse

Version, currently 0.1.01 version
  • 0.1.0latestFeb 12, 2018

github.com/thegreyfellow/morse.cr

A small library to encode/decode Morse code.

0 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  morse:
    github: thegreyfellow/morse.cr
    version: ~> 0.1.0

Then run:

shards install

shard.yml

Crystal
0.23.1
License
MIT
Author
yidmoussi
Target
  • morse from src/morse.cr

Dependencies

This version declares no dependencies.

README

morse

Morse code encoder/decoder.

Installation

Add this to your shard.yml:

dependencies:
  morse:
    github: thegreyfellow/morse.cr
    version: "~> 0.1.0"

Usage

# Encoding a string
to_encode = "hello world, this is me from the past."

encoded_string = Morse.encode(to_encode)
# => ".... . .−.. .−.. −−− / .−− −−− .−. .−.. −.. −−..−− / − .... .. ... / −.−− −−− ..− ... ... . ..−. / ..−. .−. −−− −− / − .... . / .−−. .− ... − .−.−.−"

# Decoding a string
to_decode = ".... . .−.. .−.. −−− / .−− −−− .−. .−.. −.. −−..−− / − .... .. ... / −.−− −−− ..− ... ... . ..−. / ..−. .−. −−− −− / − .... . / .−−. .− ... − .−.−.−"

decoded_string = Morse.decode(to_decode)
# => "hello world, this is me from the past."

Development

  • git clone the repo.
  • start hacking around :).

Contributing

  1. Fork it ( https://github.com/thegreyfellow/morse/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