0.1
Low commit activity in last 3 years
No release in over a year
Ruby includes a huge amount of default awesomeness that tackles most common development challenges. But every now and then, you find yourself performing contortions to achieve results that, honestly, should feel more natural given the language's design elegance. Finishing Moves is a collection of methods designed to assist in those "why is this awkward?" scenarios.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 3.1.0
 Project Readme

Finishing Moves

Gem Version Build Status Mentioned in Awesome Ruby

Ruby includes a huge amount of default awesomeness that tackles most common development challenges. But every now and then, you find yourself performing contortions to achieve results that, honestly, should feel more natural given the language's design elegance. Finishing Moves is a collection of methods designed to assist in those "why is this awkward?" scenarios.

In the right situation, they kick serious cyclomatic butt.

Installation

Gemfile

gem 'finishing_moves'

Command line

gem install 'finishing_moves'

Documentation

Not sure if this gem is for you? Check out the methods marked with a 💥 first.

Ruby Version

Tested against all supported versions of official RVM, currently 2.7.6 and above.

Development approach

  • Never override default Ruby behavior, only add functionality.
  • Follow the Unix philosophy of "Do one job really well."
  • Minimize assumptions, e.g. avoid formatting output, mutating values, and conditional logic flows.
  • Play nice with major Ruby players like Rake, Rails, and Sinatra.
  • Test all the things.

Bug Reports

Drop us a line in the issues section.

Be sure to include sample code that reproduces the problem.

Add your own finisher!

  1. Fork this repo
  2. Write your tests
  3. Add your finisher
  4. Repeat steps 2 and 3 until you see a brilliant luster
  5. Submit a pull request