You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see error message "uninitialized constant TableHelper::BlankSlate" in Rails 3 Beta3 environment. In Rails 3 the "builder" plug-in was moved from "activesupport" to separated gem therefore need to include it to "row.rb" file.
@@@
require ’table_helper/cell’
Workaround for Rails 3
if Rails::VERSION::MAJOR >= 3
require ’builder’
end