RSSAmplifier

Blog

Bytes

Byte size blogs to share my experiences.

bytes.akshaybirajdar.comRSS feed ↗2 posts

Latest posts

Using Procs as Filters for RSpec Metadata

Ever wondered why we have to add RSpec Helpers multiple times for each spec type? There must be a more idiomatic way to do this.

Reverse Find in Ruby

One of the things that sets Ruby apart from other programming languages is its impressive set of built-in features. One of my favourite method is Enumerable#detect. It returns the first element for which the block yields a truthy value and stops searching upon the first hit.