jeffrafter-crocodile 0.2.0 → 0.4.0
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/VERSION +1 -1
- data/bin/crocodile +23 -15
- data/crocodile.gemspec +5 -2
- data/vendor/selenium-server.jar +0 -0
- metadata +4 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.4.0
|
data/bin/crocodile
CHANGED
@@ -2,22 +2,17 @@
|
|
2
2
|
if ARGV.size == 0 || ARGV.include?('--help')
|
3
3
|
puts "Usage: crocodile [options] source dest"
|
4
4
|
puts ""
|
5
|
-
puts " --start
|
6
|
-
puts " --stop
|
7
|
-
puts " --width=WIDTH
|
8
|
-
puts " --height=HEIGHT
|
9
|
-
puts " --script=SCRIPT
|
5
|
+
puts " --start Start the selenium server"
|
6
|
+
puts " --stop Stop the selenium server"
|
7
|
+
puts " --width=WIDTH Set the width of the window"
|
8
|
+
puts " --height=HEIGHT Set the height of the window"
|
9
|
+
puts " --script=SCRIPT Execute arbitrary javascript in the window"
|
10
|
+
puts " --control=CODE Execute control code"
|
11
|
+
puts " --timeout=TIMEOUT Stop waiting"
|
10
12
|
puts " --help"
|
11
13
|
exit
|
12
14
|
end
|
13
15
|
|
14
|
-
# Grab the params
|
15
|
-
params = ARGV.reject{|arg| arg =~ /^--/}
|
16
|
-
source = params[0] rescue nil
|
17
|
-
dest = params[1] rescue nil
|
18
|
-
|
19
|
-
raise "You're not doing it right" if source.empty? || dest.empty?
|
20
|
-
|
21
16
|
require 'rubygems'
|
22
17
|
require 'crocodile'
|
23
18
|
require 'net/http'
|
@@ -30,13 +25,25 @@ end
|
|
30
25
|
width = opt "width"
|
31
26
|
height = opt "height"
|
32
27
|
script = opt "script"
|
28
|
+
control = opt "control"
|
29
|
+
timeout = opt "timeout"
|
33
30
|
|
34
|
-
puts "Starting Selenium"
|
35
31
|
options = {}
|
36
32
|
options[:start] = true if ARGV.include? '--start'
|
37
33
|
options[:stop] = true if ARGV.include? '--start'
|
38
34
|
options[:width] = width if width
|
39
35
|
options[:height] = height if height
|
36
|
+
options[:timeout] = timeout if timeout
|
37
|
+
|
38
|
+
# Grab the params
|
39
|
+
params = ARGV.reject{|arg| arg =~ /^--/}
|
40
|
+
source = params[0] rescue nil
|
41
|
+
dest = params[1] rescue nil
|
42
|
+
if source.nil? || dest.nil?
|
43
|
+
Crocodile.start if options[:start]
|
44
|
+
Crocodile.stop if options[:start]
|
45
|
+
exit
|
46
|
+
end
|
40
47
|
|
41
48
|
source_uri = URI.parse(source)
|
42
49
|
if (source_uri.relative?)
|
@@ -46,7 +53,8 @@ else
|
|
46
53
|
source_path = source_uri.path
|
47
54
|
source_base = source.gsub(Regexp.new(source_path + "$"), '')
|
48
55
|
end
|
56
|
+
|
49
57
|
Crocodile.snap(source_base, source_path, dest, options) do |browser|
|
58
|
+
eval control if control
|
50
59
|
browser.get_eval script if script
|
51
|
-
end
|
52
|
-
puts "Done"
|
60
|
+
end
|
data/crocodile.gemspec
CHANGED
@@ -1,12 +1,15 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
1
4
|
# -*- encoding: utf-8 -*-
|
2
5
|
|
3
6
|
Gem::Specification.new do |s|
|
4
7
|
s.name = %q{crocodile}
|
5
|
-
s.version = "0.
|
8
|
+
s.version = "0.4.0"
|
6
9
|
|
7
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
11
|
s.authors = ["Jeff Rafter"]
|
9
|
-
s.date = %q{2009-
|
12
|
+
s.date = %q{2009-08-22}
|
10
13
|
s.default_executable = %q{crocodile}
|
11
14
|
s.email = %q{jeff@baobabhealth.org}
|
12
15
|
s.executables = ["crocodile"]
|
data/vendor/selenium-server.jar
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jeffrafter-crocodile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Rafter
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-08-22 00:00:00 -07:00
|
13
13
|
default_executable: crocodile
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -46,6 +46,7 @@ files:
|
|
46
46
|
- vendor/selenium-server.jar
|
47
47
|
has_rdoc: false
|
48
48
|
homepage: http://github.com/jeffrafter/crocodile
|
49
|
+
licenses:
|
49
50
|
post_install_message:
|
50
51
|
rdoc_options:
|
51
52
|
- --charset=UTF-8
|
@@ -66,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
67
|
requirements: []
|
67
68
|
|
68
69
|
rubyforge_project:
|
69
|
-
rubygems_version: 1.
|
70
|
+
rubygems_version: 1.3.5
|
70
71
|
signing_key:
|
71
72
|
specification_version: 3
|
72
73
|
summary: Crocodile is a quick tool for taking screenshots using selenium-client
|