Skip to content

Instantly share code, notes, and snippets.

@keisuke0818
Created November 5, 2012 12:41
Show Gist options
  • Save keisuke0818/4017005 to your computer and use it in GitHub Desktop.
Save keisuke0818/4017005 to your computer and use it in GitHub Desktop.

#Railsのオープンクラスとは 既存のクラスを拡張することができる

#今から3時間後
3.hours.from_now

#あらかじめ定義
class Fixnum
  def hours
    self * 3600
  end

  def from_now
    Time.now + self
  end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment