Sha256: e7e66c4c0716c4b95231e894a1ba484660d30151360e666d6d19585fc35dd0f6
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true module Maglev class InstallGenerator < Rails::Generators::Base desc 'Install Maglev engine' source_root File.expand_path('templates/install', __dir__) hook_for :maglev_install def compile_editor_assets rake 'maglev:vite:build_all' end def migrations rake 'maglev:install:migrations' rake 'db:migrate' end def create_initializer directory 'config' directory 'public' end def generate_blank_theme generate 'maglev:theme' end def mount_engine inject_into_file 'config/routes.rb', before: /^end/ do <<-CODE mount Maglev::Engine => '/maglev' get '(*path)', to: 'maglev/page_preview#index', defaults: { path: 'index' }, constraints: Maglev::PreviewConstraint.new CODE end end def instructions $stdout.puts <<~INFO Done! 🎉 You can now tweak /config/initializers/maglev.rb. You can also modify your theme (in /app/theme and /app/views/theme) and generate new sections with rails g maglev:section. 👉 The next step is to create a site using `rails maglev:create_site`. 🚨 Don't forget to do it in production as well! INFO end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
maglevcms-1.1.0 | lib/generators/maglev/install_generator.rb |