mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-06 17:28:50 +01:00
Vendoring Rails 2.3.5
This commit is contained in:
parent
3e83d19299
commit
f8779795ce
943 changed files with 56503 additions and 61351 deletions
34
vendor/rails/railties/guides/rails_guides/helpers.rb
vendored
Normal file
34
vendor/rails/railties/guides/rails_guides/helpers.rb
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
module RailsGuides
|
||||
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))
|
||||
concat(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))
|
||||
concat content_tag(:div, result, :class => 'clearfix', :id => nick)
|
||||
end
|
||||
|
||||
def code(&block)
|
||||
c = capture(&block)
|
||||
content_tag(:code, c)
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue