search for: rinspin

Displaying 4 results from an estimated 4 matches for "rinspin".

Did you mean: crispin
2006 Feb 07
7
What happens to manuals.rubyonrails.com?
Hi guys, does anyone know what happened to the manuals site? I have not been able to connect to http://manuals.rubyonrails.com for two days (I started reading all about RoR yesterday and finished most of the tutorials i could gather, and really enjoyed playing with the rails). TIA! -xiheng -- Posted with http://DevLists.com. Sign up and save your time!
2006 Jan 24
1
Rather sticky migrate problem
Here''s the problem... Typo has ~35 migrate scripts. Script 3 makes a minor schema change, then migrates data to the new schema. For instance: add_column :articles, :user_id, :integer Article.find(:all).each do |a| a.user=User.find_by_name(a.author) a.save end This makes sense... except that a revision 35 model has been instantiated on a revision 3 schema!
2006 Jul 21
0
Review of Rails Debuggers
I''ve evaluated the best Rails debuggers I could find over the past few months. I''m hoping to hear some opinions... Did I miss any good ones? Am I way off base? :) Here''s the article: http://news.u32.net/articles/2006/07/20/reviewing-ruby-on-rails-debuggers - Scott
2006 Jan 25
0
Changing the instantiated table when using STI
Is there any way to get AR to instantiate a different class when using STI? Where it would normally instantiate Digit, I would like it to instantiate SkelDigit. Here''s why... My rails app has the following STI hierarchy: Digit < Glyph < ActiveRecord::Base My migrate script can''t use those classes directly however (backward compatibility issues), so I created some