class Fixnum
  def fixed_width w
    to_s.rjust w
...

Ruby On Numbers with leading spaces

by Omer Jakobinsky, November 01, 2010 21:27 Star_fullStar_fullStar_fullStar_fullStar_full

you can try this one out as...

Fd534d7c08b85546ce17df043ef15cd3 Talk
class ProductsController < ApplicationController  
  helper_method :sort_column, :sort_direction
  
...

Ruby Moving Code from Controller...

by Omer Jakobinsky, August 30, 2010 12:22, 2 refactorings, tagged with rails

Hi all,
I know that the c...

Fd534d7c08b85546ce17df043ef15cd3 Talk

Ruby On Language Selection

by Omer Jakobinsky, August 30, 2010 09:12

Thanks both of you I really...

Fd534d7c08b85546ce17df043ef15cd3 Talk
<% if I18n.locale == :pl %>
    <%= link_to 'PL', { :locale => :pl }, :class => "language_selected" %> | <%= link_to 'ENG', { :locale => :en } %>
<% else %>
...

Ruby Language Selection

by Omer Jakobinsky, August 25, 2010 10:47, 3 refactorings, tagged with rails, ruby

Hi, I'm sure this is the mo...

Fd534d7c08b85546ce17df043ef15cd3 Talk