Sha256: b0aa7722f19b315de7882bcca457a08d3e0617b983054df5a0f42afc75d10639
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
# # Copyright (c) 2009-2011 Hal Brodigan (postmodern.mod3 at gmail.com) # # This file is part of Ronin Gen. # # Ronin Gen is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Ronin Gen is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Ronin Gen. If not, see <http://www.gnu.org/licenses/>. # require 'ronin/gen/generator' require 'fileutils' module Ronin module Gen # # A {Generator} class for creating directories. # class DirGenerator < Generator # The destination path for the generator parameter :path, :type => String, :description => 'The destination path' # # Invokes the new Dir Generator. # # @param [String] path # The path for the generator. # # @param [Hash{Symbol => Object}] options # Additional options for the generator. # # @api public # def self.generate(path,options={}) super(options.merge(:path => path)) end # # Creates the directory and invokes the generator. # # @api semipublic # # @since 1.1.0 # def generate! require_params :path FileUtils.mkdir_p @path chdir(@path) { super } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ronin-gen-1.1.0.rc1 | lib/ronin/gen/dir_generator.rb |