1 2 3 4
class Publication < ActiveRecord::Base def publisher_name ...
Ruby Similar virtual attributes ...
by foxdemon,
November 20, 2008 13:42,
4 refactorings, tagged with getter, setter, virtual attributes
1 2 3 4
<table> <thead> <th colspan="2">Groups</th></thead> ...
Ruby Generating tables with a he...
I need to make tables to li...
1 2 3 4
def construct_search_query query = '*' query << 'AND (' << params[:search_all] << ')' if params[:search_all] && params[:search_all].length > 3 ...
Ruby Constructing a search query
I want to construct a searc...
My Publication class has a ...