├── test ├── test_plugin_helper.rb ├── functional │ └── concerns │ │ └── hosts_controller_extensions_test.rb └── unit │ └── concerns │ └── foreman_cockpit_test.rb ├── Gemfile ├── lib ├── foreman_cockpit │ ├── version.rb │ └── engine.rb ├── foreman_cockpit.rb └── tasks │ └── foreman_cockpit_tasks.rake ├── app ├── views │ └── foreman_cockpit │ │ └── hosts │ │ └── _cockpit.html.erb ├── overrides │ ├── add_load_partials_js.rb │ └── add_load_partials_js_legacy.rb ├── assets │ └── javascripts │ │ └── foreman_cockpit │ │ └── load_partial.js ├── models │ └── concerns │ │ └── foreman_cockpit │ │ └── host_extensions.rb ├── controllers │ └── concerns │ │ └── foreman_cockpit │ │ └── hosts_controller_extensions.rb └── helpers │ └── concerns │ └── foreman_cockpit │ └── hosts_helper_extensions.rb ├── locale ├── gemspec.rb ├── en │ └── foreman_cockpit.po ├── foreman_cockpit.pot └── Makefile ├── .rubocop.yml ├── config └── routes.rb ├── Contributors ├── .gitignore ├── foreman_cockpit.gemspec ├── Rakefile ├── CHANGELOG ├── README.md └── LICENSE /test/test_plugin_helper.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /lib/foreman_cockpit/version.rb: -------------------------------------------------------------------------------- 1 | # Specify the version to be picked up in the Gemspec 2 | module ForemanCockpit 3 | VERSION = '2.0.3' 4 | end 5 | -------------------------------------------------------------------------------- /app/views/foreman_cockpit/hosts/_cockpit.html.erb: -------------------------------------------------------------------------------- 1 |