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
I have been working with rails for 2 weeks now.. and have managed to do quite some interesting work.. thanks for your plugin.. I did run into this issue too.. and the workaround helped..
I am sure though that I never installed the builder gem.. the require builder statement still worked.. wondering if the gem gets installed when rails is..
closer opened this issue
Hello,
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
module TableHelper
...
@@@
original LH ticket
This ticket has 0 attachment(s).
The text was updated successfully, but these errors were encountered: