Sha256: 1cecea0c0bcaab885fe82da4ff1adcea3676f4247448c984b4503587b3ee3a81

Contents?: true

Size: 801 Bytes

Versions: 9

Compression:

Stored size: 801 Bytes

Contents

class Fixnum

  #     0xffffff.uicolor
  #     0xffffff.uicolor(0.33)
  # =>
  #     UIColor.colorWithRed(1.0, green:1.0, blue: 1.0, alpha:1.0)
  #     UIColor.colorWithRed(1.0, green:1.0, blue: 1.0, alpha:0.33)
  def uicolor(alpha=nil)
    alpha = 1.0 if alpha.nil?

    red = ((self & 0xFF0000) >> 16).to_f / 255.0
    green = ((self & 0xFF00) >> 8).to_f / 255.0
    blue = (self & 0xFF).to_f / 255.0

    UIColor.colorWithRed(red, green:green, blue:blue, alpha:alpha.to_f)
  end

  def nth
    # if the first two digits of rank are between 11 and 20, it's an
    # 'up-teenth' kinda number
    if self % 100 < 10 || self % 100 > 20
      case self % 10
      when 1
        return "st"
      when 2
        return "nd"
      when 3
        return "rd"
      end
    end

    return "th"
  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sugarcube-0.13.5 lib/sugarcube/fixnum.rb
sugarcube-0.13.4 lib/sugarcube/fixnum.rb
sugarcube-0.13.3 lib/sugarcube/fixnum.rb
sugarcube-0.13.2 lib/sugarcube/fixnum.rb
sugarcube-0.13 lib/sugarcube/fixnum.rb
sugarcube-0.12 lib/sugarcube/fixnum.rb
sugarcube-0.11.3 lib/sugarcube/fixnum.rb
sugarcube-0.11.2 lib/sugarcube/fixnum.rb
sugarcube-0.11.1 lib/sugarcube/fixnum.rb