Sha256: 33f4453adb12a7c16d22ddb6cc0cb9e6cdac70ffc44e317ed49638141f218ea7
Contents?: true
Size: 865 Bytes
Versions: 2
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true require 'fileutils' module PicoApi module Generators class FileCopier def self.build(project_name) project_name_converter = ProjectNameConverter.new(project_name) new(project_name_converter) end def initialize(project_name_converter) @project_name_converter = project_name_converter end def copy(template_file_path, destination_path) source_path = template_full_file_path(template_file_path) FileUtils.cp(source_path, "#{snakecased_name}#{destination_path}") end private attr_reader :project_name_converter def snakecased_name project_name_converter.snakecased end def template_full_file_path(template_relative_path) File.join(PicoApi.lib_path, template_relative_path) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pico_api-0.0.6 | lib/pico_api/generators/file_copier.rb |
pico_api-0.0.5 | lib/pico_api/generators/file_copier.rb |