zamcham / morse-decoder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

morse-decoder

Getting Started

This repository was created with the intent of recording the solution we came to when solving the "Decode a Morse code message" activity using ruby.

πŸ“— Table of Contents

πŸ“– morse-decoder

morse-decoder is a repository that includes a single file ruby file with our solution.

πŸ›  Built With

Tech Stack

Server
  • Locally using WSL

Key Features

Key features of the repository.

  • Has a single ruby file with a functioning ruby code for decoding morse messages.

(back to top)

πŸ’» Getting Started

Follow these steps in order to run ruby code.

Prerequisites

First you need to ensure that you have ruby installed in your computer.

Setup

It varies depending on your operating system so here are some links to help you install it on Windows and on Ubuntu.

For MacOS run the following commands

  brew install rbenv ruby-build
  # Add rbenv to bash so that it loads every time you open a terminal
  echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
  source ~/.bash_profile

  # Install Ruby
  rbenv install 3.0.1
  rbenv global 3.0.1
  ruby -v

This example shows how to install Ruby 3.0.1 which was the latest version in April 2021, but you can check to see if there is a newer version here. Iy is also assumed that you have homebrew already installed on your Mac.

Usage

Once you have ruby installed, run this command to start writing in ruby.

  irb

(back to top)

πŸ‘₯ Authors

Here is a mention all of the collaborators of this project.

πŸ‘€ Author 1

πŸ‘€ Author 2

(back to top)

🀝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the issues page.

(back to top)

⭐️ Show your support

If you like this project you can give us a hand by recommending either one of us to potential employers! πŸ˜‰πŸ€

(back to top)

πŸ™ Acknowledgments

I would like to thank those who have motivated me to keep on fighting despite how tough the journey may become.

(back to top)

πŸ“ License

This project is MIT licensed.

(back to top)

About

License:MIT License


Languages

Language:Ruby 100.0%