lib/tasks/README.md
Tasks (.rake files) in this directory will be available as public tasks in the mainManageIQ app. They can be executed in the plugin gem via the app: namespace ```shellbin/rails app:<task>``` Since these tasks are public, please namespace them, as in the following example: ```rubynamespace "manageiq:providers:embedded_terraform" do desc "Explaining what the task does" task :your_task do # Task goes here endend``` Tasks places in the lib/tasks_private directory will be private to the pluginand not available in the ManageIQ app.