{"id":15450838,"url":"https://github.com/dansantander/enumerable-methods","last_synced_at":"2025-08-21T22:25:23.996Z","repository":{"id":125331086,"uuid":"246349072","full_name":"dansantander/enumerable-methods","owner":"dansantander","description":"This project consists in building ruby methods from scratch.","archived":false,"fork":false,"pushed_at":"2020-03-27T18:11:37.000Z","size":22,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"development","last_synced_at":"2025-02-17T16:52:30.625Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/dansantander.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-10T16:14:50.000Z","updated_at":"2020-03-27T18:11:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"442b223f-0dd5-49b6-a55c-f2be5ebf5769","html_url":"https://github.com/dansantander/enumerable-methods","commit_stats":{"total_commits":21,"total_committers":2,"mean_commits":10.5,"dds":0.04761904761904767,"last_synced_commit":"e74cb28546ac021ffda17b52c1fd894b128d8510"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansantander%2Fenumerable-methods","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansantander%2Fenumerable-methods/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansantander%2Fenumerable-methods/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansantander%2Fenumerable-methods/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dansantander","download_url":"https://codeload.github.com/dansantander/enumerable-methods/tar.gz/refs/heads/development","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254478193,"owners_count":22077676,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-01T21:20:26.089Z","updated_at":"2025-05-16T06:09:07.264Z","avatar_url":"https://github.com/dansantander.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ENUMERABLE METHODS\n\nThis project recreates the methods included in the Ruby's Enumerable module\n\nProject: Advanced building blocks - Enumerables\n\n\u003c!-- PROJECT SHIELDS --\u003e\n\u003c!--\n*** I'm using markdown \"reference style\" links for readability.\n*** Reference links are enclosed in brackets [ ] instead of parentheses ( ).\n*** See the bottom of this document for the declaration of the reference variables\n*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use.\n*** https://www.markdownguide.org/basic-syntax/#reference-style-links\n--\u003e\n[![Contributors][contributors-shield]][contributors-url]\n\n\n\n\n\u003c!-- PROJECT LOGO --\u003e\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n  \n  \u003ch3 align=\"center\"\u003eEnumerables\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    Building the methods from the Enumerables module from Ruby\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/dansantander/enumerable-methods\"\u003e\u003cstrong\u003eExplore the docs »\u003c/strong\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    ·\n    \u003ca href=\"https://github.com/dansantander/enumerable-methods/issues\"\u003eReport Bug\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/dansantander/enumerable-methods/issues\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n\n\n\u003c!-- TABLE OF CONTENTS --\u003e\n## Table of Contents\n\n* [About the Project](#about-the-project)\n* [Built With](#built-with)\n* [License](#license)\n* [Contact](#contact)\n\n\n\n\u003c!-- ABOUT THE PROJECT --\u003e\n## About The Project\n\nBuilt for Microverse following these requirements: \n#### Requirement 1\n- [x] Build a method #my_each that takes an array and performs an operation each element within\n\n#### Requirement 2\n- [x] Build a method #my_each_with_index that takes an array and performs an operation each element within\n- [x] Can take a starting point as an argument\n\n#### Requirement 3\n- [x] Build a method #my_select that uses #my_each for the internal logic to return an array that complies with the given parameters\n\n#### Requirement 4\n- [x] Build a method #my_all? that uses #my_each to return a boolean value depending on the parameters provided\n\n#### Requirement 5\n- [x] Build a method #my_any? that uses #my_each to return a boolean value if any element complies with the paramaters provided\n\n#### Requirement 6\n- [x] Build a method #my_none? that uses #my_each to return a boolean value if no element complies with the parameter\n\n#### Requirement 7\n- [x] Build a method #my_count that uses #my_each to return an integer that represents the amount of instances of the array that comply with a given parameter\n\n#### Requirement 8\n- [x] Build a method #my_map that takes a block or a proc as arguments\n\n#### Requirement 9\n- [x] Build a method #my_inject that works through an array to perform a given block through the use of #my_each and that differentiates through the comparison of symbols in the parameters\n\n#### Requirement 10\n- [x] Build a method #multiply_els that uses #my_inject to multiply the elements in a given array\n\nand following this lesson :\nhttps://www.theodinproject.com/courses/ruby-programming/lessons/advanced-building-blocks\n\n\n## Built With\n* Ruby\n\n\u003c!-- LICENSE --\u003e\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n\n\n\u003c!-- CONTACT --\u003e\n## Contact\n\nDaniel Santander - [Github profile](https://github.com/dansantander)\n\nProject Link: [https://github.com/dansantander/enumerable-methods](https://github.com/dansantander/enumerable-methods)\n\n\n\n\n\n\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[contributors-shield]: https://img.shields.io/github/contributors/othneildrew/Best-README-Template.svg?style=flat-square\n[contributors-url]: https://github.com/RodolfoRodriguezMata/enumerable-methods/contributors\n[forks-shield]: https://img.shields.io/github/forks/othneildrew/Best-README-Template.svg?style=flat-square\n[forks-url]: https://github.com/othneildrew/Best-README-Template/network/members\n[stars-shield]: https://img.shields.io/github/stars/othneildrew/Best-README-Template.svg?style=flat-square\n[stars-url]: https://github.com/othneildrew/Best-README-Template/stargazers\n[issues-shield]: https://img.shields.io/github/issues/othneildrew/Best-README-Template.svg?style=flat-square\n[issues-url]: https://github.com/othneildrew/Best-README-Template/issues\n[license-shield]: https://img.shields.io/github/license/othneildrew/Best-README-Template.svg?style=flat-square\n[license-url]: https://github.com/othneildrew/Best-README-Template/blob/master/LICENSE.txt\n[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square\u0026logo=linkedin\u0026colorB=555\n[linkedin-url]: https://linkedin.com/in/othneildrew\n[product-screenshot]: images/screenshot.png","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdansantander%2Fenumerable-methods","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdansantander%2Fenumerable-methods","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdansantander%2Fenumerable-methods/lists"}