niezdefiniowana metoda `has_many 'dla Formtastic

Dostaję ten błąd:

<code>undefined method `has_many' for #<Formtastic::SemanticFormBuilder:0xb410d4c>
</code>

Działa, gdy używam go w ten sposób:

<code>ActiveAdmin.register Ressource do
    form do |f|  
        f.inputs do
            f.input :offer_id, :as => :hidden
            f.input :name
            f.input :category, :include_blank => false, :collection => Category.order('place ASC').all, :member_label => :to_label
            f.input :description, :input_html => {:class => 'editor'}
            f.input :price
        end
        f.has_many :roles do |app_f|
            app_f.inputs do
                if not app_f.object.id.nil?
                    app_f.input :_destroy, :as => :boolean, :label => "Supprimer l'utilisateur du lot"
                end
                app_f.input :user, :member_label => :to_label, :label => 'Assigné le lot'
                app_f.input :name, :include_blank => false
            end
        end
        f.buttons
    end
end 
</code>

Ale to nie działa w częściowy, muszę wywołać metodę has_many w inny sposób lub coś innego?

questionAnswers(2)

yourAnswerToTheQuestion