module Fixme::Mixin

Public Instance Methods

FIXME(date_and_message) click to toggle source
# File lib/fixme.rb, line 39
def FIXME(date_and_message)
  # In a separate class to avoid mixing in privates.
  # http://thepugautomatic.com/2014/02/private-api/
  Runner.new(date_and_message).run
end