Sha256: 1dfbe591ad7b3650f0727c1e907555dca05ca5133b29d8f22b62ac6e5299f869
Contents?: true
Size: 460 Bytes
Versions: 95
Compression:
Stored size: 460 Bytes
Contents
# This is the root buildfile shared by all generators. It defines the basic # built-in tasks needed for all generators to function. namespace :generator do desc "prepares the generator by performing any added pre-processing" task :prepare desc "builds the generator, copying files to the build root" task :build do GENERATOR.each_template do |filename, src_path, dst_path| GENERATOR.copy_file src_path, dst_path end end end
Version data entries
95 entries across 95 versions & 2 rubygems