ガイドライン モデルに国の属性があります。プラグインは使いたくありません。国を文字列として指定したいだけです。activeadmin でガイドラインを編集しようとすると、次のエラー メッセージが表示されるまで、すべてが機能しています。
ActionView::Template::Error (:country 入力を使用するには、次のような country_select プラグインをインストールしてください: https://github.com/jamesds/country-select ): 1: insert_tag renderer_for(:edit)
私の形で私は持っています
<%= f.input :country, as: :string%>
私のadmin/guidelines.rbに私は持っています
index do
column :title
column :specialty
column :content
column :hospital
column :country
column :user
default_actions
end