I am trying to use vote_fu with my app,But when i try to show votes in the browser i keep getting NoMethodError in Item#show undefined method votes_for for #<ActiveRecord::Relation:0xb411044 .And i am not sure if votes were submitted either beacuse When i click on the link to vote doesn't show any thing in the log or show any error,how do i know the votes were submitted?So either the vote doesnt get submitted or something wrong with rendering votes?
Thanks in advance.
view#show
<%=link_to "vote up",{:controller=>"Item",:action =>"vote_up" }%>
<%=@items.votes_for%>
controller
class ItemController < ApplicationController
def vote_up
@items=Item.find(params[:id])
current_user.vote_for(@items)
end
end
Models
class Item < ActiveRecord::Base
acts_as_voteable
end
class User < ActiveRecord::Base
acts_as_voter
end
Database schema
create_table "users", :force => true do |t|
t.string "email", :default => "", :null => false
t.string "encrypted_password", :limit => 128, :default => "", :null => false
t.string "reset_password_token"
t.string "remember_token"
t.datetime "remember_created_at"
t.integer "sign_in_count", :default => 0
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "items", :force => true do |t|
t.string "size"
t.string "item_name"
t.string "brand"
t.decimal "price"
t.integer "stars"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "city_id"
t.integer "category_id"
end
create_table "votes", :force => true do |t|
t.boolean "vote", :default => false
t.integer "voteable_id", :null => false
t.string "voteable_type", :null => false
t.integer "voter_id"
t.string "voter_type"
t.datetime "created_at"
t.datetime "updated_at"
end
dd_index "votes", ["voteable_id", "voteable_type"], :name => "fk_voteables"
add_index "votes", ["voter_id", "voter_type"], :name => "fk_voters"