Tagged Questions
2
votes
1answer
57 views
undefined method `output_data' for #<EventManager:0x007fa4220320c8> (NoMethodError)
I keep getting this error:
event_manager.rb:83:in': undefined method output_data' for #<EventManager:0x007fc5018320c0> (NoMethodError)
I am following the exercise on this website:
Here is ...
5
votes
2answers
712 views
Undefined method 'each' for Student:Class
I want to load a file, split its content into arrays, and have the class apply to the content.
class Student
def initialize( name, grade )
@name = name
@grade = grade
...
0
votes
1answer
64 views
This particular line of code seems to work with Rails 2.x.x but not 3.x.x? Can someone please help to “translate” it?
<li<% if @flits.first == flit %> class="first" <% end %>>
I created css for #flits_list and #flits_list :hover in application.css in Rails 3 but I would like the first flit in the ...