denny/ShinyCMS-ruby

View on GitHub
plugins/ShinySearch/lib/tasks/shiny_search_tasks.rake

Summary

Maintainability
Test Coverage
A
100%
# frozen_string_literal: true

# ShinySearch plugin for ShinyCMS ~ https://shinycms.org
#
# Copyright 2009-2024 Denny de la Haye ~ https://denny.me
#
# ShinyCMS is free software; you can redistribute it and/or modify it under the terms of the GPL (version 2 or later)

require 'dotenv/tasks'

# To copy and run the database migrations for ShinySearch:
# rails shiny_search:install:migrations
# rails db:migrate
#
# To install supporting data for ShinySearch (admin capabilities and feature flags):
# rails shiny_search:db:seed
#
# These two tasks can be run in either order.

namespace :shiny_search do
  namespace :db do
    # :nocov:
    desc 'ShinyCMS: load supporting data for ShinySearch plugin'
    task seed: %i[ environment dotenv ] do
      ShinySearch::Engine.load_seed
    end
    # :nocov:
  end
end