Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
activeadmin / lib / active_admin / views / footer.rb
Size: Mime:
module ActiveAdmin
  module Views
    class Footer < Component

      def build
        super id: "footer"
        powered_by_message
      end

      private

      def powered_by_message
        para I18n.t('active_admin.powered_by',
          active_admin: link_to("Active Admin", "http://www.activeadmin.info"),
          version: ActiveAdmin::VERSION).html_safe
      end

    end
  end
end