Skip to content

Instantly share code, notes, and snippets.

@ivanacostarubio
Created February 19, 2013 22:59
Show Gist options
  • Select an option

  • Save ivanacostarubio/4991036 to your computer and use it in GitHub Desktop.

Select an option

Save ivanacostarubio/4991036 to your computer and use it in GitHub Desktop.
# BEFORE
orange_button({:action => :buton_action, :text => "GET MY IDEAL BODY WEIGHT", :size => CGRectMake(10, 240, 300, 46), :font => {:size => 33, :color => uicolor_white, :family => "BebasNeue"}})
# AFTER
orange_button do |b|
b.action = :button_action
b.text = "GET MY IDEAL BODY WEIGHT"
b.size = CGRectMake(10, 240, 300, 46)
b.fontSize = 33
b.fontColor = UIColor.white
b.family = "BebasNeue"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment