Snippets: Short list for gems
July 26, 2007 @ 11:19 PM | posted by carmelyne
(last updated: 07.26.07)Generates a gem's list
gem list | egrep -v "^( |$)" |
[ Last updated: July 26, 2007 @ 11:22 PM ]
July 26, 2007 @ 11:19 PM | posted by carmelyne
(last updated: 07.26.07)gem list | egrep -v "^( |$)" |
[ Last updated: July 26, 2007 @ 11:22 PM ]
Snippets of 06/24/07
Rails 'A'..'Z' Paginate
1 2 3 4 5 6 7 8 9 10 11 |
# Starts with 'A'..'Z' Paginate / model def self.sort(sort) if sort find(:all, :conditions => ['name LIKE ?', "#{sort}%"]) else find(:all, :order => 'name') end end # index action / controller @models = Model.sort(params[:sort]) |

Sorry, comments are closed for this article.