https://github.com/teekaytech/enumerables
https://github.com/teekaytech/enumerables
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/teekaytech/enumerables
- Owner: teekaytech
- Created: 2020-04-27T15:21:36.000Z (about 6 years ago)
- Default Branch: development
- Last Pushed: 2020-05-15T10:31:56.000Z (about 6 years ago)
- Last Synced: 2025-01-31T09:42:33.618Z (over 1 year ago)
- Language: Ruby
- Size: 181 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ruby Enumerables
This is a cloned copy of some of the major enumerable methods, written with Ruby programming language. The goal is to ensure that the newly created methods perform the same function as the original ones.
## Getting Started
To get a local copy up and running follow these simple example steps.
- Clone or download this repository to your local workstation.
### Prerequisites
Since all the code is written using ruby, `Ruby Runtime >= 1.9` is required to interpret the code. If you don't have ruby runtime already setup on your computer, follow the instruction for your specific operating system on the [official installation guide](https://www.ruby-lang.org/en/documentation/installation/)
### Usage
After cloning on your computer, open the folder using your terminal/commandline window and run
`ruby .rb`
where `name-of-ruby-script` is any ruby file contained inside the folder, (for instance here, we have main.rb).

## Built with
* Ruby
* Rubocop (Ruby Linter Gem)
* Lint (Stickler)
* RSpec (Ruby Testing Module)
## Author
👤 **Taofeek Olalere**
- Github: [@teekaytech](https://github.com/teekaytech)
- Twitter: [@olalere](https://twitter.com/ola_lere)
- Linkedin: [linkedin](https://linkedin.com/in/teekaytech)
## 🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check the [issues page](issues/).
## Show your support
Give a ⭐️ if you like this project.
## 📝 License
This project is [MIT](lic.url) licensed.
## Acknowledgements
- [Ruby API Dock](https://apidock.com/ruby)
- [Ruby Documentation on Enumerables](https://ruby-doc.org/core-2.6.5/Enumerable.html)
- [Microverse](https://microverse.pathwright.com/library/fast-track-curriculum/69047/path/step/57421589/)
- [The Odin Project](https://www.theodinproject.com/courses/ruby-programming/lessons/basic-enumerable-methods#learning-outcomes)