{"id":20389498,"url":"https://github.com/arnaudband/decode_morse","last_synced_at":"2026-06-07T00:31:48.650Z","repository":{"id":50388651,"uuid":"518623754","full_name":"ArnaudBand/decode_morse","owner":"ArnaudBand","description":"Decode Morse, we built it using some methods in ruby to decode the morse code into letter.","archived":false,"fork":false,"pushed_at":"2022-07-30T10:40:51.000Z","size":12,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"development","last_synced_at":"2025-03-04T23:44:58.393Z","etag":null,"topics":["ruby","rubygem"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArnaudBand.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-27T22:03:34.000Z","updated_at":"2023-05-01T02:51:17.000Z","dependencies_parsed_at":"2022-08-27T23:12:24.945Z","dependency_job_id":null,"html_url":"https://github.com/ArnaudBand/decode_morse","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ArnaudBand/decode_morse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fdecode_morse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fdecode_morse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fdecode_morse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fdecode_morse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArnaudBand","download_url":"https://codeload.github.com/ArnaudBand/decode_morse/tar.gz/refs/heads/development","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fdecode_morse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34005030,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-06T02:00:07.033Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ruby","rubygem"],"created_at":"2024-11-15T03:18:21.572Z","updated_at":"2026-06-07T00:31:48.631Z","avatar_url":"https://github.com/ArnaudBand.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Decode Morse\n\n\u003e Decode Morse, we built it using some methods in ruby to decode the morse code into letter.\n\n## Set-up Rubocop GitHub Action\n\n[Rubocop](https://www.rubocop.org/) is a Ruby static code analyzer (a.k.a. linter) and code formatter. It will enforce many of the guidelines outlined in the community [Ruby Style Guide](https://rubystyle.guide/).\n\nThis GitHub Action is going to run [Rubocop](https://docs.rubocop.org/en/stable/) to help you find style issues.\n\nPlease do the following **steps in this order**:\n\n1. In the first commit of your feature branch create a `.github/workflows` folder and add a copy of [`.github/workflows/linters.yml`](.github/workflows/linters.yml) to that folder.\n    - **Remember** to use the file linked above\n    - **Remember** that `.github` folder starts with a dot.\n2. **Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.**\n    - If you think that change is necessary - open a [Pull Request in this repository](../README.md#contributing) and let your code reviewer know about it.\n3. When you open your first pull request you should see the result of the GitHub Actions:\n\n![gh actions checks](../assets/images/gh-actions-rubocop-linters-checks.png)\n\nClick on the `Details` link to see the full output and the errors that need to be fixed:\n\n![gh actions failing checks](../assets/images/gh-actions-rubocop-failing-checks.png)\n\n## [OPTIONAL]Set-up RSpec GitHub Action\n\nYou can run your tests with GitHub Actions to ensure that they are passing before merging a PR.\n\nTo use the GitHub Action to run your tests, please do the following **steps in this order**:\n\n1. Add a copy of [`.github/workflows/tests.yml`](.github/workflows/tests.yml) to your `.github/workflows` folder.\n    - **Remember** to use the file linked above\n    - Do not modify or delete the [`.github/workflows/linters.yml`](.github/workflows/linters.yml) file that should already be in that folder.\n    - RSpec by default will try to run any file ending in `_spec.rb` inside the `spec` folder. Make sure to follow this convention for your tests files so `rspec` can run your spec files.\n    - You can modify the [`.github/workflows/tests.yml`](.github/workflows/tests.yml) file to better fit your custom needs.\n3. When you open your pull request you should see the result of the GitHub Action:\n\n![gh actions checks](../assets/images/gh-actions-rspec-tests-checks.png)\n\nClick on the `Details` link of the test action to check the results of your tests.\n\n## Set-up linters in your local env\n\n### [RuboCop](https://docs.rubocop.org/en/stable/)\n\n1. Add this line to the `Gemfile`\n    ```\n    gem 'rubocop', '\u003e= 1.0', '\u003c 2.0'\n    ```\n    *not sure how to use Gemfile? Read [this](https://bundler.io/v1.15/guides/bundler_setup.html).*\n2. Run `bundle install`.\n3. Copy [.rubocop.yml](./.rubocop.yml) to the root directory of your project\n4. **Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.**\n    - If you think that change is necessary - open a [Pull Request in this repository](../README.md#contributing) and let your code reviewer know about it.\n5. Run `rubocop`.\n6. Fix linter errors.\n7. **IMPORTANT NOTE**: feel free to research [auto-correct options for Rubocop](https://rubocop.readthedocs.io/en/latest/auto_correct/) if you get a flood of errors but keep in mind that correcting style errors manually will help you to make a habit of writing a clean code!\n\n## Troubleshooting\n\n- While using Colorize gem, if you are facing errors with Rspec related to \n    ```bash\n    LoadError:\n    cannot load such file -- colorize\n    ```\n    please remove ```--deployment``` from line no. [26](https://github.com/shubham14p3/Ruby-capstone-project/blob/ca86784cc88bea7c933e329c0953f07e21bcf6ca/.github/workflows/tests.yml#L16) of test.yml file.\n\n\n## Author\n\n👤 **Bandonkeye Arnaud**\n\n- GitHub: [@githubhandle](https://github.com/ArnaudBand)\n- Twitter: [@twitterhandle](https://twitter.com/@ba104781)\n- LinkedIn: [LinkedIn](https://www.linkedin.com/in/ArnaudBandonkeye/)\n\n👤 **Emmanuel Orji-Ihuoma**\n\nGitHub: [@emmiiorji](https://github.com/ArnaudBand)\nTwitter: [@emmiiorji](https://twitter.com/@emmiiorji)\nLinkedIn: [LinkedIn](https://www.linkedin.com/in/orji-emmanuel)\n\n\n## 🤝 Contributing\n\nContributions, issues, and feature requests are welcome!\n\nFeel free to check the [issues page](../../issues/).\n\n## Show your support\n\nGive a ⭐️ if you like this project!\n\n## Acknowledgments\n\n- Hat tip to anyone whose code was used\n- Inspiration\n- etc\n\n## 📝 License\n\nThis project is [MIT](./MIT.md) licensed.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnaudband%2Fdecode_morse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farnaudband%2Fdecode_morse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnaudband%2Fdecode_morse/lists"}