Patched

Create one-off refinements for classes, without (most) of the boilerplate.

Installing

Put this in your Gemfile:

gem 'patched'

Or this in your terminal:

gem install patched

Usage

Basically, this:

using patched(ClassName) {
  # add methods to ClassName here
}

The syntax is, unfortunately, quite important.

Example

class LolMaths

  include Patched

  using patched(Fixnum) {
    def to_word
      case self
      when 0 then "zero"
      when 1 then "one"
      when 2 then "two"
      # ...
      end
    end
  }

  def add(*numbers)
    numbers.reduce("") {|sum, num| sum + num.to_word }
  end

end

Tests

Forthcoming.

Contributing

Any ideas or attempts to make this less of a horrible hack would be very much appreciated.