iCuke 0.4.11 → 0.4.12

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.12 (2010-04-23)
2
+
3
+ === Bugfixes
4
+ * Give the HTTP server 30 seconds to start up after XCode claims the app is launched.
5
+
1
6
  == 0.4.11 (2010-04-23)
2
7
 
3
8
  === Bugfixes
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.11
1
+ 0.4.12
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.11"
8
+ s.version = "0.4.12"
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"]
@@ -121,6 +121,14 @@ module ICuke
121
121
  XCode.quit
122
122
  retry
123
123
  end
124
+
125
+ timeout(30) do
126
+ begin
127
+ view
128
+ rescue Errno::ECONNREFUSED
129
+ sleep(0.5)
130
+ end
131
+ end
124
132
  end
125
133
  end
126
134
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 11
9
- version: 0.4.11
8
+ - 12
9
+ version: 0.4.12
10
10
  platform: ruby
11
11
  authors:
12
12
  - Rob Holland