Sha256: 146c991f23f358787ae6a4a3b366154f8b032402a724be8e51e9433b9cc24db2

Contents?: true

Size: 970 Bytes

Versions: 14

Compression:

Stored size: 970 Bytes

Contents

module Hayde
  module Helpers
    def guide(name, url, options = {}, &block)
      link = content_tag(:a, :href => url) { name }
      result = content_tag(:dt, link)

      if ticket = options[:ticket]
        result << content_tag(:dd, lh(ticket), :class => 'ticket')
      end

      result << content_tag(:dd, capture(&block))
      result
    end

    def lh(id, label = "Lighthouse Ticket")
      url = "http://rails.lighthouseapp.com/projects/16213/tickets/#{id}"
      content_tag(:a, label, :href => url)
    end

    def author(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

    def code(&block)
      c = capture(&block)
      content_tag(:code, c)
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
hayde-0.1.13 lib/hayde/helpers.rb
hayde-0.1.12 lib/hayde/helpers.rb
hayde-0.1.11 lib/hayde/helpers.rb
hayde-0.1.10 lib/hayde/helpers.rb
hayde-0.1.9 lib/hayde/helpers.rb
hayde-0.1.8 lib/hayde/helpers.rb
hayde-0.1.7 lib/hayde/helpers.rb
hayde-0.1.6 lib/hayde/helpers.rb
hayde-0.1.5 lib/hayde/helpers.rb
hayde-0.1.4 lib/hayde/helpers.rb
hayde-0.1.3 lib/hayde/helpers.rb
hayde-0.1.2 lib/hayde/helpers.rb
hayde-0.1.1 lib/hayde/helpers.rb
hayde-0.1.0 lib/hayde/helpers.rb