Public Gists by railssignals

Gravatar
Thu Jul 23 14:30:10 -0700 2009
1
2
3
http://www.sohtanaka.com/web-design/smart-columns-w-css-jquery/
 
(function($) {
Gravatar
Tue Jul 21 21:15:40 -0700 2009
1
2
3
desc 'Print out all defined routes in match order, with names. Target specific controller with CONTROLLER=x.'
task :routes => :environment do
  all_routes = ENV['CONTROLLER'] ? ActionController::Routing::Routes.routes.select { |route| route.defaults[:controller] == ENV['CONTROLLER'] } : ActionController::Routing::Routes.routes
Gravatar
Sun Apr 12 22:42:55 -0700 2009
1
2
3
##
# Calendar helper with proper events
# http://www.cuppadev.co.uk/webdev/making-a-real-calendar-in-rails/