module Harpiya module Frontend class CopyStorefrontGenerator < Rails::Generators::Base desc 'Copies all storefront views and stylesheets from harpiya frontend to your application' def self.source_paths [ File.expand_path('../../../../../app', __dir__), File.expand_path('../../../../../app/assets/stylesheets/harpiya/frontend', __dir__), ] end def copy_storefront directory 'views', './app/views' template 'application.scss', './app/assets/stylesheets/harpiya/frontend/application.scss' end end end end