Sha256: 0ad5f6f2d5fba93c306de6af59538dff9b28af39cb6643e9be6b4ae917c9e1eb
Contents?: true
Size: 537 Bytes
Versions: 34
Compression:
Stored size: 537 Bytes
Contents
require 'padrino-core/command' module Padrino ## # This method return the correct location of padrino-gen bin or # exec it using Kernel#system with the given args. # # @param [Array<String>] args. # Splat of arguments to pass to padrino-gen. # # @example # Padrino.bin_gen(:app, name.to_s, "-r=#{destination_root}") # def self.bin_gen(*args) @_padrino_gen_bin ||= [Padrino.ruby_command, File.expand_path("../../../bin/padrino-gen", __FILE__)] system args.unshift(@_padrino_gen_bin).join(" ") end end
Version data entries
34 entries across 34 versions & 1 rubygems