Created
March 14, 2013 20:08
-
-
Save alexbartlow/5164760 to your computer and use it in GitHub Desktop.
Define_method with a block
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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