Sha256: f1f3be5d2bed2b22a84d881b3fa5fd63141a6f97e22bf7942698cc6b3dbef15d
Contents?: true
Size: 501 Bytes
Versions: 50
Compression:
Stored size: 501 Bytes
Contents
module Ree module CLI class GeneratePackage class << self def run(package_name:, project_path:, path:, locals: {}, stdout: $stdout) generated_files_list = Ree::Gen::Package.generate( project_path: project_path, local_path: path, package_name: package_name, locals: locals ) generated_files_list.compact.each { |file| stdout.puts "Generated: #{file}" } end end end end end
Version data entries
50 entries across 50 versions & 1 rubygems