Skip to content

In Ruby, we call an object enumerable when it describes a set of items and a method to loop over each of them. The built-in enumerables get their enumeration features by including the Enumerable module, which provides methods like #include?, #count, #map, #select and #uniq.

License

Notifications You must be signed in to change notification settings

skyv26/Ruby-Enumerable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Ruby Enumerable

The Enumerable mixin provides collection classes with several traversal and searching methods, and with the ability to sort. The class must provide a method each, which yields successive members of the collection, as these methods rely on an ordering between members of the collection.

Built With

  • Ruby
  • RuboCop
  • RSPec

Live Demo

comming soon

Getting Started

To get a local copy up and running follow these simple example steps

  • Clone the project to the local computer
  • irb morse_code.rb

Prerequisite:

  • visual code editor
  • Knowledge About Ruby

Author

About

In Ruby, we call an object enumerable when it describes a set of items and a method to loop over each of them. The built-in enumerables get their enumeration features by including the Enumerable module, which provides methods like #include?, #count, #map, #select and #uniq.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages