Sha256: 7ef05a65ce64b263fe01f56a711ba1e774f39ea2c801c4edfe37d2524d423e7e
Contents?: true
Size: 1011 Bytes
Versions: 2
Compression:
Stored size: 1011 Bytes
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', __dir__)] 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
padrino-core-0.16.0.pre3 | lib/padrino-core/command.rb |
padrino-core-0.16.0.pre2 | lib/padrino-core/command.rb |