Class: ProcessingIde
- Inherits:
-
Object
- Object
- ProcessingIde
- Defined in:
- lib/jruby_art/processing_ide.rb
Overview
detects processing preferences.txt, extracts sketchbook_path
Instance Attribute Summary collapse
-
#preferences ⇒ Object
readonly
Returns the value of attribute preferences.
Instance Method Summary collapse
-
#initialize ⇒ ProcessingIde
constructor
A new instance of ProcessingIde.
- #installed? ⇒ Boolean
- #sketchbook_path ⇒ Object
Constructor Details
#initialize ⇒ ProcessingIde
Returns a new instance of ProcessingIde.
6 7 8 |
# File 'lib/jruby_art/processing_ide.rb', line 6 def initialize @preferences = File.join(ENV['HOME'], '.processing', 'preferences.txt') end |
Instance Attribute Details
#preferences ⇒ Object (readonly)
Returns the value of attribute preferences.
5 6 7 |
# File 'lib/jruby_art/processing_ide.rb', line 5 def preferences @preferences end |
Instance Method Details
#installed? ⇒ Boolean
10 11 12 |
# File 'lib/jruby_art/processing_ide.rb', line 10 def installed? File.exist?(preferences) end |
#sketchbook_path ⇒ Object
14 15 16 17 18 19 20 21 22 |
# File 'lib/jruby_art/processing_ide.rb', line 14 def sketchbook_path File.open(preferences, 'r') do |file| file.each_line do |line| if /sketchbook/.match?(line) return line.tap { |sli| sli.slice!('sketchbook.path.three=') }.chomp end end end end |