Sha256: 1258cfbb03522beb1fc352216aeae9dad21a5a59916fca78141b3236f0a0dfab
Contents?: true
Size: 1.72 KB
Versions: 2
Compression:
Stored size: 1.72 KB
Contents
require 'json' require 'stringio' require 'skippy/error' require 'skippy/os' class Sketchup < Skippy::Command include Thor::Actions option :port, :type => :numeric, :default => 7000 desc 'debug VERSION', 'Start SketchUp with Ruby Debugger' def debug(version) app = find_sketchup(version) unless app.can_debug raise Skippy::Error, "Debug library not installed for Sketchup #{version}" end arguments = ['-rdebug', %("ide port=#{options.port}")] Skippy.os.launch_app(app.executable, *arguments) end desc 'launch VERSION', 'Start SketchUp' def launch(version) app = find_sketchup(version) Skippy.os.launch_app(app.executable) end desc 'list', 'List all known SketchUp versions' def list say shell.set_color('Known SketchUp versions:', :yellow, true) Skippy.os.sketchup_apps.each { |sketchup| version = sketchup.version.to_s.ljust(4) sketchup_name = "SketchUp #{version}" bitness = sketchup.is64bit ? '64bit' : '32bit' debug = sketchup.can_debug ? '(debugger)' : '' # TODO(thomthom): Use print_table ? output = StringIO.new output.write ' ' output.write shell.set_color(sketchup_name, :green, false) output.write ' ' output.write bitness output.write ' ' output.write shell.set_color(debug, :yellow, false) say output.string } end default_command(:list) private # @param [Integer] version # @return [Skippy::SketchUpApp, nil] def find_sketchup(version) app = Skippy.os.sketchup_apps.find { |sketchup| sketchup.version == version.to_i } raise Skippy::Error, "SketchUp #{version} not found." if app.nil? app end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
skippy-0.4.1.a | app/commands/sketchup.rb |
skippy-0.4.0.a | app/commands/sketchup.rb |