iCuke 0.4.10 → 0.4.11

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/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.4.11 (2010-04-23)
2
+
3
+ === Bugfixes
4
+ * Give text fields a little more time to settle before typing to avoid losing the first keystroke on auto-capitalised fields.
5
+
1
6
  == 0.4.10 (2010-04-23)
2
7
 
3
8
  == Features
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.10
1
+ 0.4.11
data/iCuke.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{iCuke}
8
- s.version = "0.4.10"
8
+ s.version = "0.4.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Rob Holland"]
@@ -101,6 +101,10 @@ class ICukeWorld
101
101
  end
102
102
  end
103
103
 
104
+ # Without this sleep fields which have auto-capitilisation/correction can
105
+ # miss the first keystroke for some reason.
106
+ sleep(0.5)
107
+
104
108
  text.split('').each do |c|
105
109
  begin
106
110
  tap(c == ' ' ? 'space' : c, :pause => false)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 10
9
- version: 0.4.10
8
+ - 11
9
+ version: 0.4.11
10
10
  platform: ruby
11
11
  authors:
12
12
  - Rob Holland