pivotal-selenium-rc 1.5.20090112 → 1.5.20090512
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/Rakefile +3 -1
- data/VERSION.yml +2 -2
- metadata +1 -1
data/Rakefile
CHANGED
@@ -42,6 +42,8 @@ task :download_jar_file do
|
|
42
42
|
end
|
43
43
|
Zip::ZipFile.open(download_path) do |zipfile|
|
44
44
|
jar_file_entry = zipfile.entries.find {|file| file.name =~ /selenium-server\.jar$/}
|
45
|
-
|
45
|
+
destination = "#{project_dir}/vendor/selenium-server.jar"
|
46
|
+
FileUtils.rm_rf(destination)
|
47
|
+
zipfile.extract(jar_file_entry, destination)
|
46
48
|
end
|
47
49
|
end
|
data/VERSION.yml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
2
|
:major: 1
|
3
3
|
:minor: 5
|
4
|
-
:patch:
|
5
|
-
:jar_url: http://
|
4
|
+
:patch: 20090512
|
5
|
+
:jar_url: http://nexus.openqa.org/content/repositories/snapshots/org/seleniumhq/selenium/selenium-remote-control/1.0-SNAPSHOT/selenium-remote-control-1.0-20090512.181627-79-dist.zip
|