Displaying 2 results from an estimated 2 matches for "holzner".
Did you mean:
holzer
2007 Apr 02
19
Pref for beginner book: Wrox (Holzner) or Ruby for Rails?
..., I stopped after that, a little to advanced with no base knowledge
of Ruby), Why''s guide and my copy of Chris Pine''s book today. After
Pine, I''m going to buy either the Wrox book or Ruby for Rails book. I
did a search and there''s not too much on the Wrox book (Holzner) and
the Ruby for Rails book has been given good reviews. Anyone familiar
with both? Where I''m at: almost no programming knowledge except for
the above readings in the last two weeks.
Thanks,
JD
--~--~---------~--~----~------------~-------~--~----~
You received this message because yo...
2008 Nov 28
3
Beginner: "NameError - uninitialized constant" when I create a model object
My first Rails example using model and I got this NameError:
NameError in VandaController#att
uninitialized constant VandaController::Compute
Same code works fine if I don''t create the Compute object.
What did I do wrong?
Here is the Controller
class VandaController < ApplicationController
def att
@compute = Compute.new
@data1 = @compute.cmpt
end
end
Here is the Model