This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
...---... | |
../ / | \ \.. | |
./ / / | \ \ \. | |
/ / / | \ \ \ | |
/ / / | \ \ \ | |
^^^^^^^^^^^^^^^^^^^^^^^ | |
\ | / | |
\ | / | |
\ | / | |
\ | / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.:IIIIHIHHIHHHII::I:. | |
.IIIIHIHHHHHHIHIIIIMHHI:, | |
:IIIIHIHHHHHHMMHHIHHIIHHIII:. | |
.:IHIHHHHHHHHHHHHHIHIHHIHHHIH:I:, | |
,.:HIHHHHHHHHHHHHHHHHHHHHHIHIHHII:. | |
,.:IHHHHHHHHHHMMMMHHHHHHHIIHHHIHIII, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def current_user_session | |
return @current_user_session if defined?(@current_user_session) | |
@current_user_session = UserSession.find | |
end | |
kürzer: | |
def current_user_session | |
@current_user_session ||= UserSession.find | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ActiveRecord::Base | |
validates_uniqueness_of :email, :case_sensitive => false | |
validate :valid_email? | |
private | |
def valid_email? | |
address = EmailVeracity::Address.new(email) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def set_page_title(title = nil, &block) | |
if block_given? | |
html = capture(&block) | |
concat(html) | |
end | |
@page_title = title || strip_tags(html) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# place this in application_helper.rb | |
def set_page_title(title = nil, &block) | |
if block_given? | |
html = capture(&block) | |
concat(html) | |
end | |
@page_title = title || strip_tags(html) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- set_page_title do | |
%h1 | |
%strong Ein neuer User. | |
Wie spannend! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- set_page_title "Neuer User" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add localized templates | |
# Default locale | |
app/views/messages/index.html.erb | |
# I18n.locale is set to :da (Danish) | |
app/views/messages/index.da.html.erb |
OlderNewer