简体   繁体   中英

How can I use yard doc in ActiveAdmin?

When I add a new index page in activeadmin, I write some code like this:

# A default activeadmin page for yard overview
ActiveAdmin.register AdminUser do
  permit_params :email, :password, :password_confirmation

  index do
    column :email
    column :current_sign_in_at
    column :last_sign_in_at
    column :sign_in_count
    default_actions
  end

  filter :email

  form do |f|
    f.inputs "Admin Details" do
      f.input :email
      f.input :password
      f.input :password_confirmation
    end
    f.actions
  end

end

In fact the activeadmin had create some view and controller, and I want to display some document info in yard server, but the yarddoc ignore this file.

What should I do ?

You can not write documentation because Active Admin is Domain-specific language . Write good comments I do not see any other way.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM