osxscreenshot 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/lib/osxscreenshot.rb +6 -4
- data/test/test_osxscreenshot.rb +9 -0
- metadata +2 -2
data/History.txt
CHANGED
data/lib/osxscreenshot.rb
CHANGED
@@ -2,8 +2,10 @@ require 'open4'
|
|
2
2
|
|
3
3
|
module OSX
|
4
4
|
class Screenshot
|
5
|
-
VERSION = '0.0.
|
6
|
-
|
5
|
+
VERSION = '0.0.4'
|
6
|
+
|
7
|
+
class CommandFailed < StandardError; end
|
8
|
+
|
7
9
|
##
|
8
10
|
# Takes a screenshot of a website, optionally resizes it, and writes
|
9
11
|
# it to a temporary directory. Returns the file path to the
|
@@ -109,9 +111,9 @@ module OSX
|
|
109
111
|
end
|
110
112
|
|
111
113
|
# Error
|
112
|
-
|
113
|
-
raise "Command failed: #{cmd}"
|
114
|
+
raise CommandFailed, "Command failed: #{cmd}"
|
114
115
|
rescue Timeout::Error => e
|
116
|
+
Process.kill "KILL", pid
|
115
117
|
return nil
|
116
118
|
end
|
117
119
|
|
data/test/test_osxscreenshot.rb
CHANGED
@@ -30,6 +30,15 @@ class TestOsxscreenshot < Test::Unit::TestCase
|
|
30
30
|
assert_nil @tmpfile
|
31
31
|
end
|
32
32
|
|
33
|
+
def test_handles_error_when_exiting
|
34
|
+
@tmpfile = nil
|
35
|
+
assert_raise OSX::Screenshot::CommandFailed do
|
36
|
+
OSX::Screenshot.capture("http://example.com", {
|
37
|
+
:webkit2png => "exit 1;"
|
38
|
+
})
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
33
42
|
def teardown
|
34
43
|
if @tmpfile
|
35
44
|
FileUtils.rm @tmpfile
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: osxscreenshot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geoffrey Grosenbach
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-02-
|
12
|
+
date: 2010-02-19 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|