tsaleh (owner)

Revisions

gist: 138254 Download_button fork
public
Public Clone URL: git://gist.github.com/138254.git
Embed All Files: show embed
user.rb #
1
2
3
4
5
  # avoids mass-assignment restriction for protected attributes
  def update_from_hash!(params)
    params.each {|method,value| self.send("#{method}=", value)}
    self
  end