Skip to content

Instantly share code, notes, and snippets.

@alexbartlow
Created March 14, 2013 20:08
Show Gist options
  • Save alexbartlow/5164760 to your computer and use it in GitHub Desktop.
Save alexbartlow/5164760 to your computer and use it in GitHub Desktop.
Define_method with a block
def self.define_user_field(field_name, &block)
block ||= lambda{|x| x}
define_method("user_#{field_name}"} do |f|
if user_signed_in?
block.call(current_user.send(field_name))
else
f.text_field field_name
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment