Sha256: 9eb6ff5914792a950a674e267fe5bca805ed41f85d2f5d01d0883a3337542ace
Contents?: true
Size: 1 KB
Versions: 35
Compression:
Stored size: 1 KB
Contents
require 'rbconfig' module Padrino ## # This method return the correct location of padrino bin or # exec it using Kernel#system with the given args # # @param [Array] args # command or commands to execute # # @return [Boolean] # # @example # Padrino.bin('start', '-e production') # def self.bin(*args) @_padrino_bin ||= [self.ruby_command, File.expand_path("../../../bin/padrino", __FILE__)] args.empty? ? @_padrino_bin : system(args.unshift(@_padrino_bin).join(" ")) end ## # Return the path to the ruby interpreter taking into account multiple # installations and windows extensions. # # @return [String] # path to ruby bin executable # def self.ruby_command @ruby_command ||= begin ruby = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name']) ruby << RbConfig::CONFIG['EXEEXT'] # escape string in case path to ruby executable contain spaces. ruby.sub!(/.*\s.*/m, '"\&"') ruby end end end # Padrino
Version data entries
35 entries across 35 versions & 3 rubygems