Sha256: 5ed79651c00cfb66dad1edeaa9b03c009227a9a9e6e992f4d8203a3a57d7117a
Contents?: true
Size: 489 Bytes
Versions: 10
Compression:
Stored size: 489 Bytes
Contents
module Jabe module ApplicationHelper include PublicEntryUrl def default_gravatar_url "#{request.protocol}#{request.host_with_port}#{asset_path('jabe/gravatar.gif')}" end def page_title(title) @page_title = title end def stylesheet(name) content_for :stylesheets do stylesheet_link_tag(name) end end def javascript(name) content_for :javascripts do javascript_include_tag(name) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems