ForestAdmin/forest-rails

View on GitHub
lib/tasks/display_apimap.rake

Summary

Maintainability
Test Coverage
namespace :forest do
  desc "Display the current Forest Apimap version"
  task(:display_apimap).clear
  task display_apimap: :environment do
    bootstrapper = ForestLiana::Bootstrapper.new
    bootstrapper.display_apimap
  end
end