watir-formhandler 2.3.1 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3d2050dd1981a2848022f0b1f78b87bc482660a7
4
- data.tar.gz: 4cec0cfc37b141431cd7ec1f65aa88f9a6d4b4d0
3
+ metadata.gz: e7051a503e9ba6788a411f8f148537b1ea773026
4
+ data.tar.gz: e0cbede45ce1c63fb44b9895cdd37aff6b2b76d7
5
5
  SHA512:
6
- metadata.gz: e6373c582036eb1f2daaa31b86d664084b8f102fd14976dead7dd88747579310754093c938c10cb3efb48968742ac5d4fdb947422cd99f66c7721db77e1a118f
7
- data.tar.gz: 51e5639297a33983025b7b35fd114fd5a4448ee469e870c3ce3b90c0dbaae48fc0525199d03793f99a31748953d52a0e9bb94d0a16dd24c29db42d8093cc2ad5
6
+ metadata.gz: 504553d19efda62247988ef954a7671a95cc2a0f2e69ce00b5bdb65440bbdbb568c396b8221e3601334e19580398d0e5020e888512e52fc6fbf5be6efdfd779b
7
+ data.tar.gz: 64a5b347fac0f4a5d34f738989019ab24a34988126e74e200f1fead76d0342a814620f214314b0848cc9442d9d93668b195e5d8f82138803ccf35c20cdca80ce
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ![Code Climate](https://codeclimate.com/github/Dervol03/watir-formhandler/badges/gpa.svg)](https://codeclimate.com/github/Dervol03/watir-formhandler)
1
+ ![Code Climate](https://codeclimate.com/github/Dervol03/watir-formhandler/badges/gpa.svg)
2
2
 
3
3
  watir-formhandler
4
4
  =================
@@ -28,7 +28,7 @@ module Watir
28
28
 
29
29
  # Selected option(s) of this Select.
30
30
  # @return [String, Array<String>] if only one option is selected, return it as string,
31
- # otherwise, return it as an array of strings.
31
+ # otherwise, return it as an array of strings.
32
32
  def field_value
33
33
  opts = selected_options
34
34
  opts.count == 1 ? opts.first.text : opts.map(&:text)
@@ -4,7 +4,7 @@ module Watir
4
4
  class TextArea
5
5
  # Returns the text currently set in this TextField
6
6
  # @return [String] the current text in the field. If the field is not set at all, it will return
7
- # and empty string.
7
+ # and empty string.
8
8
  def field_value
9
9
  value || ''
10
10
  end
@@ -4,7 +4,7 @@ module Watir
4
4
  class TextField
5
5
  # Returns the text currently set in this TextField
6
6
  # @return [String] the current text in the field. If the field is not set at all, it will return
7
- # and empty string.
7
+ # and empty string.
8
8
  def field_value
9
9
  value || ''
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watir-formhandler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yves Komenda
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: 0.6.11
41
41
  description: |-
42
42
  Adds some convenience methods to fill out forms in Watir.
43
- Last changes: added sober documentation.
43
+ Latest changes: fixed yardocs
44
44
  email:
45
45
  - b_d_v@web.de
46
46
  executables: []