Module: Hayde::Helpers
- Defined in:
- lib/hayde/helpers.rb
Instance Method Summary collapse
- #author(name, nick, image = 'credits_pic_blank.gif', &block) ⇒ Object
- #code(&block) ⇒ Object
- #guide(name, url, options = {}, &block) ⇒ Object
- #lh(id, label = "Lighthouse Ticket") ⇒ Object
Instance Method Details
#author(name, nick, image = 'credits_pic_blank.gif', &block) ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'lib/hayde/helpers.rb', line 20 def (name, nick, image = 'credits_pic_blank.gif', &block) image = "images/#{image}" result = content_tag(:img, nil, :src => image, :class => 'left pic', :alt => name) result << content_tag(:h3, name) result << content_tag(:p, capture(&block)) content_tag(:div, result, :class => 'clearfix', :id => nick) end |
#code(&block) ⇒ Object
29 30 31 32 |
# File 'lib/hayde/helpers.rb', line 29 def code(&block) c = capture(&block) content_tag(:code, c) end |
#guide(name, url, options = {}, &block) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/hayde/helpers.rb', line 3 def guide(name, url, = {}, &block) link = content_tag(:a, :href => url) { name } result = content_tag(:dt, link) if ticket = [:ticket] result << content_tag(:dd, lh(ticket), :class => 'ticket') end result << content_tag(:dd, capture(&block)) result end |
#lh(id, label = "Lighthouse Ticket") ⇒ Object
15 16 17 18 |
# File 'lib/hayde/helpers.rb', line 15 def lh(id, label = "Lighthouse Ticket") url = "http://rails.lighthouseapp.com/projects/16213/tickets/#{id}" content_tag(:a, label, :href => url) end |