watir 1.9.0.rc1 → 1.9.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0.rc1
1
+ 1.9.0.rc2
@@ -269,7 +269,7 @@ module Watir
269
269
  # browser.file_field(:index, 2) # access the second file upload on the page (1 based, so the first field is accessed with :index,1)
270
270
  #
271
271
  def file_field(how, what=nil)
272
- FileUpload.new(self, how, what)
272
+ FileField.new(self, how, what)
273
273
  end
274
274
 
275
275
  def javascript_dialog(opts={})
@@ -31,5 +31,5 @@ require 'watir/html_element'
31
31
  require 'watir/module'
32
32
 
33
33
  require 'rautomation'
34
- require 'watir/dialogs/file_upload'
34
+ require 'watir/dialogs/file_field'
35
35
  require 'watir/dialogs/javascript'
@@ -1,5 +1,5 @@
1
1
  module Watir
2
- class FileUpload < InputElement
2
+ class FileField < InputElement
3
3
  #:stopdoc:
4
4
  INPUT_TYPES = ["file"]
5
5
  #:startdoc:
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watir
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15424167
4
+ hash: 15424161
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 9
9
9
  - 0
10
10
  - rc
11
- - 1
12
- version: 1.9.0.rc1
11
+ - 2
12
+ version: 1.9.0.rc2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Bret Pettichord
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2011-06-05 00:00:00 Z
20
+ date: 2011-06-06 00:00:00 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: win32-process
@@ -59,14 +59,14 @@ dependencies:
59
59
  requirements:
60
60
  - - "="
61
61
  - !ruby/object:Gem::Version
62
- hash: 15424167
62
+ hash: 15424161
63
63
  segments:
64
64
  - 1
65
65
  - 9
66
66
  - 0
67
67
  - rc
68
- - 1
69
- version: 1.9.0.rc1
68
+ - 2
69
+ version: 1.9.0.rc2
70
70
  type: :runtime
71
71
  version_requirements: *id003
72
72
  - !ruby/object:Gem::Dependency
@@ -77,14 +77,14 @@ dependencies:
77
77
  requirements:
78
78
  - - "="
79
79
  - !ruby/object:Gem::Version
80
- hash: 15424167
80
+ hash: 15424161
81
81
  segments:
82
82
  - 1
83
83
  - 9
84
84
  - 0
85
85
  - rc
86
- - 1
87
- version: 1.9.0.rc1
86
+ - 2
87
+ version: 1.9.0.rc2
88
88
  type: :runtime
89
89
  version_requirements: *id004
90
90
  - !ruby/object:Gem::Dependency
@@ -176,7 +176,7 @@ files:
176
176
  - lib/watir/table.rb
177
177
  - lib/watir/win32.rb
178
178
  - lib/watir/win32ole.rb
179
- - lib/watir/dialogs/file_upload.rb
179
+ - lib/watir/dialogs/file_field.rb
180
180
  - lib/watir/dialogs/javascript.rb
181
181
  - unittests/all_tests.rb
182
182
  - unittests/buttons_xpath_test.rb