{"id":21056431,"url":"https://github.com/rileymanda/ruby-enum","last_synced_at":"2026-04-28T14:31:15.440Z","repository":{"id":191675802,"uuid":"685116395","full_name":"RileyManda/ruby-enum","owner":"RileyManda","description":"Ruby-enum is a Ruby project that demonstrates a custom implementation of certain methods from the Enumerable module.","archived":false,"fork":false,"pushed_at":"2023-09-02T07:36:18.000Z","size":10,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2026-01-01T14:34:51.248Z","etag":null,"topics":["ruby","ruby-enumerables"],"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/RileyManda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-30T14:50:21.000Z","updated_at":"2023-09-30T22:06:03.000Z","dependencies_parsed_at":"2024-11-20T00:03:39.174Z","dependency_job_id":null,"html_url":"https://github.com/RileyManda/ruby-enum","commit_stats":null,"previous_names":["rileymanda/ruby-enum"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RileyManda/ruby-enum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RileyManda%2Fruby-enum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RileyManda%2Fruby-enum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RileyManda%2Fruby-enum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RileyManda%2Fruby-enum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RileyManda","download_url":"https://codeload.github.com/RileyManda/ruby-enum/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RileyManda%2Fruby-enum/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32384890,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T11:25:28.583Z","status":"ssl_error","status_checked_at":"2026-04-28T11:25:05.435Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","ruby-enumerables"],"created_at":"2024-11-19T16:50:51.076Z","updated_at":"2026-04-28T14:31:15.411Z","avatar_url":"https://github.com/RileyManda.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ruby-enum\n\u003cdiv align=\"center\"\u003e\n\n  \u003ch1\u003e\u003cb\u003eEnumerable\u003c/b\u003e\u003c/h1\u003e\n\n\u003c/div\u003e\n\n\u003c!-- TABLE OF CONTENTS --\u003e\n\n# 📗 Table of Contents\n\n- [📗 Table of Contents](#-table-of-contents)\n- [📖 Enumerable](#-Enumerable)\n  - [🛠 Built With](#-built-with)\n    - [Tech Stack](#tech-stack)\n    - [Key Features](#key-features)\n  - [Getting Started](#getting-started)\n  - [👥 Author](#-author)\n  - [🔭 Future Features](#-future-features)\n  - [🤝 Contributing](#-contributing)\n  - [⭐️ Show your support](#️-show-your-support)\n  - [🙏 Acknowledgments](#-acknowledgments)\n  - [📝 License](#-license)\n\n\u003c!-- PROJECT DESCRIPTION --\u003e\n\n# 📖 Enumerable \u003ca name=\"about-project\"\u003e\u003c/a\u003e\n\n**Enumerable** is a Ruby project that demonstrates a custom implementation of certain methods from the Enumerable module.\n\n## 🛠 Built With \u003ca name=\"built-with\"\u003e\u003c/a\u003e\n\n### Tech Stack \u003ca name=\"tech-stack\"\u003e\u003c/a\u003e\n\n- Ruby\n\n\u003c!-- Features --\u003e\n\n### Key Features \u003ca name=\"key-features\"\u003e\u003c/a\u003e\n\n- Custom implementation of the `each` method for the `MyList` class.\n- Custom implementations for `all?`, `any?`, and `filter` methods in the `MyEnumerable` module.\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- GETTING STARTED --\u003e\n\n## Getting Started\n\n1. Create an instance of the `MyList` class.\n2. Utilize the custom methods from the `MyEnumerable` module to work with the list.\n3. Test your code using the provided examples.\n\n```ruby\nrequire_relative 'my_list'\n\n# Create our list\nlist = MyList.new(1, 2, 3, 4)\n\n# Test #all?\nputs list.all? { |e| e \u003c 5 }  # Should output: true\nputs list.all? { |e| e \u003e 5 }  # Should output: false\n\n# Test #any?\nputs list.any? { |e| e == 2 }  # Should output: true\nputs list.any? { |e| e == 5 }  # Should output: false\n\n# Test #filter\nputs list.filter(\u0026:even?).inspect  # Should output: [2, 4]\n```\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- AUTHORS --\u003e\n\n## 👥 Author \u003ca name=\"author\"\u003e\u003c/a\u003e\n\n👤 Clarence Atim\n\n- GitHub: [@ClarenceAtim](https://github.com/ClarenceAtim)\n\n👤 **RileyManda**\n\n- GitHub: [@RileyManda](https://github.com/RileyManda)\n- Twitter: [@rilecodez](https://twitter.com/rileycodez)\n- LinkedIn: [rileymanda](https://www.linkedin.com/in/rileymanda/)\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- FUTURE FEATURES --\u003e\n\n## 🔭 Future Features \u003ca name=\"future-features\"\u003e\u003c/a\u003e\n\n- **Add additional custom methods for MyEnumerable**\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- CONTRIBUTING --\u003e\n\n## 🤝 Contributing \u003ca name=\"contributing\"\u003e\u003c/a\u003e\n\nContributions, issues, and feature requests are welcome!\n\nFeel free to check the [issues page](https://github.com/RileyManda/ruby-enum/issues).\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- SUPPORT --\u003e\n\n## ⭐️ Show your support \u003ca name=\"support\"\u003e\u003c/a\u003e\n\nIf you like this project you can share this project to your friend\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- ACKNOWLEDGEMENTS --\u003e\n\n## 🙏 Acknowledgments \u003ca name=\"acknowledgements\"\u003e\u003c/a\u003e\n\nI would like to thank microverse for this project\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n\u003c!-- LICENSE --\u003e\n\n## 📝 License \u003ca name=\"license\"\u003e\u003c/a\u003e\n\nThis project is licensed under the [MIT License](./LICENSE).\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frileymanda%2Fruby-enum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frileymanda%2Fruby-enum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frileymanda%2Fruby-enum/lists"}