watirsplash 0.2.10 → 0.2.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,10 @@
1
+ === Version 0.2.11 / 2010-10-15
2
+
3
+ * fix integration with RAutomation - uninstall all versions of Watir before installing this version of WatirSplash due to the conflicts of Watir's AutoIt version and RAutomation AutoIt version
4
+
1
5
  === Version 0.2.10 / 2010-10-14
2
6
 
3
- * Added Watir 1.6.6 dependency
7
+ * fixed Watir 1.6.6 dependency
4
8
 
5
9
  === Version 0.2.9 / 2010-10-14
6
10
 
data/Rakefile CHANGED
@@ -30,7 +30,7 @@ Execute "watirsplash generate" under your project's directory to generate defaul
30
30
  gem.add_dependency("watir", "=1.6.6")
31
31
  gem.add_dependency("rspec", "=1.3.0")
32
32
  gem.add_dependency("diff-lcs")
33
- gem.add_dependency("rautomation")
33
+ gem.add_dependency("rautomation", ">=0.0.3")
34
34
  gem.add_dependency("require_all")
35
35
  gem.add_dependency("rmagick")
36
36
  gem.add_dependency("syntax")
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.10
1
+ 0.2.11
@@ -1,11 +1,11 @@
1
1
  require "rubygems"
2
2
  require "require_all"
3
+ require "rautomation"
3
4
  gem "rspec", "=1.3.0"
4
5
  require "spec"
5
6
  gem "watir", "=1.6.6"
6
7
  require "watir"
7
8
  require "pathname"
8
- require "rautomation"
9
9
  require_rel "watirsplash/wait_helper"
10
10
  require_rel "watirsplash/element_extensions"
11
11
  require_rel "watirsplash/file_helper"
@@ -25,8 +25,7 @@ module Watir
25
25
  path = Pathname.new(file_path)
26
26
  raise "path to #{file_path} has to be absolute!" unless path.absolute?
27
27
  self.click_no_wait
28
- download_window = RAutomation::Window.new(:title => "File Download",
29
- :text => "Do you want to open or save this file?")
28
+ download_window = RAutomation::Window.new(:title => "File Download")
30
29
  WaitHelper.wait_until {download_window.present?}
31
30
  download_window.button(:value => "&Save").click
32
31
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watirsplash
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3
4
+ hash: 1
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 10
10
- version: 0.2.10
9
+ - 11
10
+ version: 0.2.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jarmo Pertman
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-14 00:00:00 +03:00
18
+ date: 2010-10-15 00:00:00 +03:00
19
19
  default_executable: watirsplash
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -72,10 +72,12 @@ dependencies:
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- hash: 3
75
+ hash: 25
76
76
  segments:
77
77
  - 0
78
- version: "0"
78
+ - 0
79
+ - 3
80
+ version: 0.0.3
79
81
  type: :runtime
80
82
  version_requirements: *id004
81
83
  - !ruby/object:Gem::Dependency
@@ -200,7 +202,7 @@ licenses: []
200
202
  post_install_message: |-
201
203
  *************************
202
204
 
203
- Thank you for installing WatirSplash 0.2.10! Don't forget to take a look at README and History files!
205
+ Thank you for installing WatirSplash 0.2.11! Don't forget to take a look at README and History files!
204
206
 
205
207
  Execute "watirsplash generate" under your project's directory to generate default project structure.
206
208
 
@@ -239,7 +241,7 @@ rubyforge_project:
239
241
  rubygems_version: 1.3.7
240
242
  signing_key:
241
243
  specification_version: 3
242
- summary: watirsplash 0.2.10
244
+ summary: watirsplash 0.2.11
243
245
  test_files:
244
246
  - spec/spec_helper_spec.rb
245
247
  - spec/spec_match_array_spec.rb