1
vote
0
votes
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
