indie-raster 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/indie-raster.gemspec +1 -1
- data/src-ruby/indie-raster.rb +1 -1
- metadata +1 -1
data/indie-raster.gemspec
CHANGED
data/src-ruby/indie-raster.rb
CHANGED
|
@@ -90,7 +90,7 @@ class IndieRasterSession
|
|
|
90
90
|
out = `cat '#{tmppath}' | #{INDIE_RASTER_PATH}`
|
|
91
91
|
`rm '#{tmppath}'`
|
|
92
92
|
else
|
|
93
|
-
stdin, stdout, stderr = Open3.popen3
|
|
93
|
+
stdin, stdout, stderr = Open3.popen3 INDIE_RASTER_PATH
|
|
94
94
|
stdin.puts input
|
|
95
95
|
stdin.close
|
|
96
96
|
out = stdout.read
|