Sha256: 61a346c9f0735c8acd151d3441313b84637434e29229dd70518ef47dc422b02f
Contents?: true
Size: 356 Bytes
Versions: 8
Compression:
Stored size: 356 Bytes
Contents
# frozen_string_literal: true module Liam class InstallGenerator < Rails::Generators::Base source_root File.expand_path('../templates/', __FILE__) desc 'Generates the config files needed to make Liam work.' def copy_settings copy_file 'liam.yml', 'config/liam.yml' copy_file 'liam.rake', 'lib/tasks/liam.rake' end end end
Version data entries
8 entries across 8 versions & 1 rubygems