What is extention .html.arb for Ruby on Rails?

activeadmin, ruby-on-rails

Solution

@levinalex already pointed you in the right direction, but to make it more clear:

`.html.arb` is the view partial designation for Arbre, just like `.html.erb` is used by ERB and `.html.haml` is used by Haml.

Problem

I am in a project in which I found a file with the extension .html.arb, in my app/admin folder. What is the difference between this extension and the .html.erb extension?

Original source