Sha256: 1f5132c99246ae892f53c9af22f45be5c8803f892b28b94e68d45ed7f91f9c9d

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

class Skippy::OSCommon

  # @param [String] command
  def execute_command(command)
    # Something with a Thor application like skippy get the 'RUBYLIB'
    # environment set which prevents SketchUp from finding its StdLib
    # directories. (At least under Windows.) This relates to child processes
    # inheriting the environment variables of its parent.
    # To work around this we unset RUBYLIB before launching SketchUp. This
    # doesn't affect skippy as it's about to exit as soon as SketchUp starts
    # any way.
    ENV['RUBYLIB'] = nil if ENV['RUBYLIB']
    id = spawn(command)
    Process.detach(id)
  end

  # @param [String] path
  def launch_app(path, *args) # rubocop:disable Lint/UnusedMethodArgument
    raise NotImplementedError
  end

  def sketchup_apps
    raise NotImplementedError
  end

  # @param [String] path
  # @return [Integer, nil]
  def sketchup_version_from_path(path)
    match = File.basename(path).match(/[0-9.]+/)
    match ? match[0].to_i : nil
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
skippy-0.4.3.a lib/skippy/os/common.rb