Search Results

1
vote

Rails: rake db:migrate *very* slow on Oracle

use a profiler to figure out what's taking so long …
0
votes

How do I get IRBRC running on Win32 for Ruby console?

cd %HOMEPATH% edit .irbrc add stuff …
0
votes

getting rid of ruby gems that won’t die

update your version of ruby gems gem update --system then hopefully gem uninstall xxx will work right now [was a bug in older versions] …
0
votes

Speed up Rails App on development env.?

If you're on windows, use some mingw builds of Ruby http://rubyinstaller.org/downloads/ If you're on linux, this might be he …
0
votes

Rails can’t find the generator class

in 1.9 there's Enumerator::Generator or you might be able to get away with creating your own file 'generator' that just does Generator = Enumerator GL. -r …
1
vote

How do you use a partial in a layout template?

I think you just pass it a full path to it, like 3.4.1 second example http://guides.rubyonrails. …
0
votes

Emulation of each_slice without block in ruby < 1.8.7

checkout the 'backports' gem :) …