Sha256: 269d4148aad9ae59b3a2742a104bba82273813125d97a71388ce3385d9628cce
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
require 'bigdecimal' require 'guerrilla_patch/allocate' module Kernel def let(name, &block) define_method(name, &block) end def let_self(name, &block) define_singleton_method(name, &block) end def when_present(item, &block) if block_given? item.nil? ? '' : block.call(item) else item end end def consists_of PoorsManStringBuilder.new.tap { |builder| yield(builder) }.result end class PoorsManStringBuilder attr_reader :result def initialize @result = '' end def add(item) @result << item.to_s end alias :always :add def when_present(item, &block) @result << Kernel.when_present(item, &block).to_s end def when(item, &block) return unless item @result << Kernel.when_present(item, &block).to_s end end end #add sum to array, with or without name class Array def sum(name = nil) self.map(&name).reduce(0, :+) end end class Hash def negative Hash[self.map { |key,value| [key, -value]}] end end class Fixnum def negative -self end end module Kernel def to_d BigDecimal.new(self.to_s) end def allocate_evenly(number_of_slices) Allocate.evenly(self.to_d, number_of_slices) end def allocate(ratios) Allocate.new(self.to_d, ratios).divided end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
guerrilla_patch-2.5.0 | lib/guerrilla_patch/kernel.rb |