Guest User

Untitled

a guest
Jan 11th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.19 KB | None | 0 0
  1. class Numeric
  2.    def method_missing(method_id)
  3.        if method_id.to_s =='euro'
  4.        self.send('euros')
  5.      else
  6.          super
  7.       end
  8.     def euros
  9.         self * 1.3
  10.      end
  11.  end
Add Comment
Please, Sign In to add comment