/Ruby-Enumerable

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.

Primary LanguageRubyMIT LicenseMIT

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