lib/jruby_art/installer.rb in jruby_art-1.3.1 vs lib/jruby_art/installer.rb in jruby_art-1.3.2

- old
+ new

@@ -1,9 +1,9 @@ # frozen_string_literal: false require 'yaml' -VERSION = '3.3'.freeze # processing version +VERSION = '3.3.2'.freeze # processing version # Abstract Installer class class Installer attr_reader :os, :sketch, :gem_root, :home def initialize(root, os) @@ -52,16 +52,16 @@ end end # Configuration checker class Check < Installer - require_relative 'core' + require_relative 'core' def install show_version return super unless config installed = File.exist? File.join(gem_root, 'lib/ruby/jruby-complete.jar') proot = ' PROCESSING_ROOT = Not Set Correctly!!!' unless root_exist? - proot ||= " PROCESSING_ROOT = #{config['PROCESSING_ROOT']}" + proot ||= " PROCESSING_ROOT = #{config['PROCESSING_ROOT']}" sketchbook = " sketchbook_path = #{config['sketchbook_path']}" template = " template = #{config['template']}" java_args = " java_args = #{config['java_args']}" max_watch = " MAX_WATCH = #{config['MAX_WATCH']}" jruby = config.fetch('JRUBY', true)