Skip to content

Instantly share code, notes, and snippets.

@HatemMahmoud
HatemMahmoud / Ubuntu rbenv
Created September 7, 2011 12:56
Installing Ruby 1.9.2 with OpenSSL on Ubuntu 11.04 using ruby-build and rbenv
# for more info: https://gist.github.com/1120938
@HatemMahmoud
HatemMahmoud / rails-page-title-02.rb
Created March 22, 2010 17:05
A simple way to customize page title in Rails controllers
#in products_controller.rb
before_filter :set_title
def set_title
# default title for this controller
@title = 'Products'
end
def index
# different title for this action
@title = 'Catalog'
@HatemMahmoud
HatemMahmoud / rails-page-title-01.rhtml.erb
Created March 22, 2010 17:03
A simple way to customize page titles in Rails views
<!-- in views/products/index.html.erb -->
<% @title = "Catalog" %>
<!-- in application.rhtml.erb -->
<title><%= @title.titleize + ' - My Great Store' %></title>