watir-formhandler 2.3.2 → 2.4.0

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: e7051a503e9ba6788a411f8f148537b1ea773026
4
- data.tar.gz: e0cbede45ce1c63fb44b9895cdd37aff6b2b76d7
3
+ metadata.gz: be25cc8fcb65673adef902afa110861e82dceb53
4
+ data.tar.gz: 86687953ff40767bfdb6c6ddf88abaeda180e9b9
5
5
  SHA512:
6
- metadata.gz: 504553d19efda62247988ef954a7671a95cc2a0f2e69ce00b5bdb65440bbdbb568c396b8221e3601334e19580398d0e5020e888512e52fc6fbf5be6efdfd779b
7
- data.tar.gz: 64a5b347fac0f4a5d34f738989019ab24a34988126e74e200f1fead76d0342a814620f214314b0848cc9442d9d93668b195e5d8f82138803ccf35c20cdca80ce
6
+ metadata.gz: f8aaa1fa108ca1786168b44c1f2eb294c3e86b09067de19eff6ecf7afa8a38f757a57eddabaac8a72f5a079aba9989fa7be76c3429b8eb88141c0eab0f7a0fb6
7
+ data.tar.gz: 8bf7219567519779618497bfa0710e558b6238f3a5128a6d703c753c637fdfa8c6172069a107ad47015987ef06c40759f5a3bd8b374c62fc56854579a1c23f9d
data/README.md CHANGED
@@ -16,6 +16,7 @@ Extends some Watir classes to provide a more comfortale handling for forms and t
16
16
  * [#fill_in](#fill_in)
17
17
  * [OptionGroup](#optiongroup)
18
18
  * [:start_node](#start_node)
19
+ * [Latest Changes](#latest-changes)
19
20
 
20
21
 
21
22
  ## Installation
@@ -113,4 +114,16 @@ for these kind of groups, if the respective options has been activated.
113
114
  The new methods _#field_ and _#fill_in_ will start their search for the specified label with the
114
115
  given String on the Container on which it is called, by default. However, you may specify an
115
116
  arbitrary _start_node_ from which to start, which will probably be most useful when calling the
116
- methods directly on your Watir::Browser instance.
117
+ methods directly on your Watir::Browser instance.
118
+
119
+ ***
120
+ ***
121
+
122
+ ### Latest Changes
123
+
124
+ #### Version 2.4.0
125
+
126
+ * Renamed the files in such a way that the gem can now properly required with a hyphen like the
127
+ gem name instead of an underscore:
128
+
129
+ require 'watir-formhandler'
@@ -0,0 +1,14 @@
1
+ require 'watir'
2
+ require 'watir-webdriver'
3
+ require 'selenium-webdriver'
4
+
5
+ require 'watir-formhandler/watir'
6
+ require 'watir-formhandler/element'
7
+ require 'watir-formhandler/option_group'
8
+ require 'watir-formhandler/container'
9
+ require 'watir-formhandler/check_box'
10
+ require 'watir-formhandler/select'
11
+ require 'watir-formhandler/radio'
12
+ require 'watir-formhandler/text_field'
13
+ require 'watir-formhandler/text_area'
14
+ require 'watir-formhandler/file_field'
data/spec/spec_helper.rb CHANGED
@@ -5,7 +5,7 @@ require 'watir'
5
5
  require 'watir-webdriver'
6
6
  require 'selenium-webdriver'
7
7
  require 'rspec'
8
- require 'watir_formhandler'
8
+ require 'watir-formhandler'
9
9
  require 'pry'
10
10
 
11
11
  HTML_DIR = File.join(File.dirname(File.expand_path(__FILE__)), 'html')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watir-formhandler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yves Komenda
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-30 00:00:00.000000000 Z
11
+ date: 2014-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: watir
@@ -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
- Latest changes: fixed yardocs
43
+ Latest changes: gem can now be correctly required with >require "watir-formhandler"<
44
44
  email:
45
45
  - b_d_v@web.de
46
46
  executables: []
@@ -49,17 +49,17 @@ extra_rdoc_files:
49
49
  - README.md
50
50
  files:
51
51
  - README.md
52
- - lib/watir_formhandler.rb
53
- - lib/watir_formhandler/check_box.rb
54
- - lib/watir_formhandler/container.rb
55
- - lib/watir_formhandler/element.rb
56
- - lib/watir_formhandler/file_field.rb
57
- - lib/watir_formhandler/option_group.rb
58
- - lib/watir_formhandler/radio.rb
59
- - lib/watir_formhandler/select.rb
60
- - lib/watir_formhandler/text_area.rb
61
- - lib/watir_formhandler/text_field.rb
62
- - lib/watir_formhandler/watir.rb
52
+ - lib/watir-formhandler.rb
53
+ - lib/watir-formhandler/check_box.rb
54
+ - lib/watir-formhandler/container.rb
55
+ - lib/watir-formhandler/element.rb
56
+ - lib/watir-formhandler/file_field.rb
57
+ - lib/watir-formhandler/option_group.rb
58
+ - lib/watir-formhandler/radio.rb
59
+ - lib/watir-formhandler/select.rb
60
+ - lib/watir-formhandler/text_area.rb
61
+ - lib/watir-formhandler/text_field.rb
62
+ - lib/watir-formhandler/watir.rb
63
63
  - spec/check_box_spec.rb
64
64
  - spec/container_spec.rb
65
65
  - spec/file_field_spec.rb
@@ -1,14 +0,0 @@
1
- require 'watir'
2
- require 'watir-webdriver'
3
- require 'selenium-webdriver'
4
-
5
- require 'watir_formhandler/watir'
6
- require 'watir_formhandler/element'
7
- require 'watir_formhandler/option_group'
8
- require 'watir_formhandler/container'
9
- require 'watir_formhandler/check_box'
10
- require 'watir_formhandler/select'
11
- require 'watir_formhandler/radio'
12
- require 'watir_formhandler/text_field'
13
- require 'watir_formhandler/text_area'
14
- require 'watir_formhandler/file_field'