aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/rails_guides/helpers.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-02-04 01:44:58 +0000
committerPratik Naik <pratiknaik@gmail.com>2009-02-04 01:44:58 +0000
commit03bb1ebec513de779908af110c46e16b9c882673 (patch)
tree4df5643c61501de1b8e4101746e324a183042262 /railties/guides/rails_guides/helpers.rb
parente4094e23f9e3740599e9eaac527fbef86ff4b4c4 (diff)
downloadrails-03bb1ebec513de779908af110c46e16b9c882673.tar.gz
rails-03bb1ebec513de779908af110c46e16b9c882673.tar.bz2
rails-03bb1ebec513de779908af110c46e16b9c882673.zip
Convert the guides from asciidoc to textile and integrate with the new design.
If you're a guide writer and want to generate the guides, Run : ruby railties/guides/rails_guides.rb And guides HTML will get generated inside railties/guides/output directory.
Diffstat (limited to 'railties/guides/rails_guides/helpers.rb')
-rw-r--r--railties/guides/rails_guides/helpers.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/railties/guides/rails_guides/helpers.rb b/railties/guides/rails_guides/helpers.rb
new file mode 100644
index 0000000000..e05793d40e
--- /dev/null
+++ b/railties/guides/rails_guides/helpers.rb
@@ -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