Sha256: 1ef54465a8f4ee2fb5c0730ad24a5d66c008a8178e964599c10950e8f7db9631
Contents?: true
Size: 759 Bytes
Versions: 12
Compression:
Stored size: 759 Bytes
Contents
# frozen_string_literal: true module Lcms module Engine module Generators class InstallGenerator < Rails::Generators::Base desc 'Copies all required configuration files.' source_root File.expand_path('templates', __dir__) def copy_config_files directory File.expand_path('templates/config', __dir__), Rails.root.join('config') end def update_gemfile # Required by lcms-engine because of unpublished gems are not automatically installed with the parent gem gem 'wicked_pdf', git: 'https://github.com/learningtapestry/wicked_pdf.git', branch: 'puppeteer-support', ref: '964a090' end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems