lib/picky/platforms/macruby.rb in picky-4.2.1 vs lib/picky/platforms/macruby.rb in picky-4.2.2

- old
+ new

@@ -1,10 +1,10 @@ # This tests if we are using MacRuby. # If yes, it checks if we already have require_relative. # # TODO Remove (too verbose) message as soon as it is final. # -if Kernel.respond_to?(:to_plist) && !Kernel.respond_to?(:require_relative) +if RUBY_ENGINE == 'macruby' && !Kernel.respond_to?(:require_relative) puts "Installing Picky specific MacRuby extensions." module Kernel \ No newline at end of file