a generator to move the styles to app
This commit is contained in:
13
lib/generators/install/USAGE
Normal file
13
lib/generators/install/USAGE
Normal file
@ -0,0 +1,13 @@
|
||||
Description:
|
||||
Install merged, create dirs, copy initial empty data
|
||||
NOT done
|
||||
|
||||
Example:
|
||||
bin/rails generate merged:install
|
||||
|
||||
This will create:
|
||||
/merged directory for your data
|
||||
/merged/*yml empty data files
|
||||
/app/assets/images/cms for your images
|
||||
/app/assets/stylesheets/merged/tailwind_extra.css
|
||||
|
9
lib/generators/install/install_generator.rb
Normal file
9
lib/generators/install/install_generator.rb
Normal file
@ -0,0 +1,9 @@
|
||||
require "rails/generators"
|
||||
|
||||
module Merged
|
||||
module Generators
|
||||
class InstallGenerator < Rails::Generators::Base
|
||||
source_root File.expand_path("templates", __dir__)
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user