Closed leppert closed 11 years ago
Thanks for reporting your issue! You're #6 in my list of open issues. Use that link to check how soon your issue will be answered. Thanks for your patience.
Guessing from the offending line, it looks like one of your fields or ActiveRecord objects has an unexpected name that collides with a core class. I can debug if you give me a sample repository with data that recreates the problem. Alternatively, you can modify hirb locally and report with pp
what you see for rows
and options
in that method.
Closing. I can reopen if you answer the above
Have same issue my model is following :
1 class MaProspectAction < ActiveRecord::Base
2 set_table_name "ma_prospect_action"
3 attr_accessible :action_id, :date_created, :date_deadline, :date_deleted, :imported_id, :open, :prospect_id, :remarks, :user_id
4
5 end
So it's either action_id, or open column (my first guesses) that breaks hirb here...
I'm getting the following error with
Hirb.enable
. Switching toHirb.disable
allows it to run properly.