Class: ProcessingIde

Inherits:
Object
  • Object
show all
Defined in:
lib/jruby_art/processing_ide.rb

Overview

detects processing preferences.txt, extracts sketchbook_path

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeProcessingIde

Returns a new instance of ProcessingIde.



4
5
6
# File 'lib/jruby_art/processing_ide.rb', line 4

def initialize
  @preferences = File.join(ENV['HOME'], '.processing', 'preferences.txt')
end

Instance Attribute Details

#preferencesObject (readonly)

Returns the value of attribute preferences.



3
4
5
# File 'lib/jruby_art/processing_ide.rb', line 3

def preferences
  @preferences
end

Instance Method Details

#installed?Boolean

Returns:

  • (Boolean)


8
9
10
# File 'lib/jruby_art/processing_ide.rb', line 8

def installed?
  File.exist?(preferences)
end

#sketchbook_pathObject



12
13
14
15
16
17
18
# File 'lib/jruby_art/processing_ide.rb', line 12

def sketchbook_path
  File.open(preferences, 'r') do |file|
    file.each_line do |line|
      return line.tap { |sli| sli.slice!('sketchbook.path.three=') }.chomp if line =~ /sketchbook/
    end
  end
end