Sha256: 881a4e4244297cbaee24800bc5f652290f10de25897cd39e89f778b3ef79630a
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
require 'fileutils' require 'repo_manager/views/view_helper' module RepoManager class Generate < Thor namespace :generate include Thor::Actions include RepoManager::ThorHelper include ::RepoManager::ViewHelper desc "init PATH", "create the initial configuration file and folder structure" def init(path) logger.debug "init task initial configuration: #{configuration.inspect}" # create instance var so that it can be referenced in templates @path = path ? File.expand_path(path) : FileUtils.pwd source = path_to(:repo_manager, File.join('lib', 'repo_manager', 'tasks', 'generate', 'templates', 'config', 'repo.conf.tt')) destination = File.join(@path, 'repo.conf') say_status :init, "creating initial config file at '#{destination}'" template(source, destination) source = path_to(:repo_manager, File.join('lib', 'repo_manager', 'tasks', 'generate', 'templates', 'init', '.')) destination = @path say_status :init, "creating initial file structure in '#{destination}'" directory(source, destination) return 0 end private # where to start looking, required by the template method def self.source_root File.dirname(__FILE__) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
repo_manager-0.7.3 | lib/repo_manager/tasks/generate/init.rb |
repo_manager-0.7.2 | lib/repo_manager/tasks/generate/init.rb |
repo_manager-0.7.1 | lib/repo_manager/tasks/generate/init.rb |