I am trying to have class=\"text\" in my input fields when using a custom wrapper called :hinted in simple_form 2.0.0.rc
class=\"text\"
config.wrappers :hinted do
Currently there no way to do this. You can use the defaults options like this if you want.
defaults
<%= simple_form_for(@user, :defaults => { :input_html => { :class => "text" } }) do %> <%= f.input :name %> <% end %>