Sha256: 0b3f94e9ecfc1593d9e4f17730cd998feb9bfe3fd844901538cc1dd9b877f838
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
require 'rbconfig' class SystemWrapper # static method for use in defaults def self.windows? return ((Config::CONFIG['host_os'] =~ /mswin|mingw/) ? true : false) end # class method so as to be mockable for tests def windows? return SystemWrapper.windows? end def module_eval(string) return Object.module_eval("\"" + string + "\"") end def eval(string) return eval(string) end def search_paths return ENV['PATH'].split(File::PATH_SEPARATOR) end def cmdline_args return ARGV end def env_set(name, value) ENV[name] = value end def env_get(name) return ENV[name] end def time_now return Time.now.asctime end def shell_backticks(command) return { :output => `#{command}`, :exit_code => ($?.exitstatus) } end def shell_system(command) system( command ) return { :output => '', :exit_code => ($?.exitstatus) } end def add_load_path(path) $LOAD_PATH.unshift(path) end def require_file(path) require(path) end def ruby_success return ($!.nil? || $!.is_a?(SystemExit) && $!.success?) end def constants_include?(item) # forcing to strings provides consistency across Ruby versions return Object.constants.map{|constant| constant.to_s}.include?(item.to_s) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ceedling-0.0.5 | new_project_template/vendor/ceedling/lib/system_wrapper.rb |
ceedling-0.0.4 | new_project_template/vendor/ceedling/lib/system_wrapper.rb |