Class: Snackhack2::ScreenShot
- Inherits:
-
Object
- Object
- Snackhack2::ScreenShot
- Defined in:
- lib/snackhack2/screenshots.rb
Instance Attribute Summary collapse
-
#time ⇒ Object
Returns the value of attribute time.
-
#zip ⇒ Object
Returns the value of attribute zip.
Instance Method Summary collapse
- #initialize ⇒ ScreenShot constructor
- #run ⇒ Object
Constructor Details
#initialize ⇒ ScreenShot
7 8 9 10 |
# File 'lib/snackhack2/screenshots.rb', line 7 def initialize @zip = "screenshots.zip" @time = 60 end |
Instance Attribute Details
#time ⇒ Object
Returns the value of attribute time.
4 5 6 |
# File 'lib/snackhack2/screenshots.rb', line 4 def time @time end |
#zip ⇒ Object
Returns the value of attribute zip.
4 5 6 |
# File 'lib/snackhack2/screenshots.rb', line 4 def zip @zip end |
Instance Method Details
#run ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/snackhack2/screenshots.rb', line 12 def run File.open("lol.bat", 'w+') { |file| file.write("psr.exe /start /output #{@zip} /sc 1 /gui 0") } File.open("lol2.bat", 'w+') { |file| file.write("psr.exe /stop") } Process.spawn("lol.bat") sleep @time.to_i system("lol2.bat") sleep 2 File.delete("lol.bat") File.delete("lol2.bat") end |