lib/jruby_art/installer.rb in jruby_art-1.2.1 vs lib/jruby_art/installer.rb in jruby_art-1.2.2

- old
+ new

@@ -1,9 +1,9 @@ # frozen_string_literal: false require 'yaml' -VERSION = '3.1.1'.freeze # processing version +VERSION = '3.2.1'.freeze # processing version # Abstract Installer class class Installer attr_reader :os, :sketch, :gem_root, :home def initialize(root, os) @@ -47,9 +47,10 @@ end # Display the current version of JRubyArt. def show_version puts format('JRubyArt version %s', JRubyArt::VERSION) + puts format('Expected Processing version %s', VERSION) end end # Configuration checker class Check < Installer