frank-cucumber 0.5.2.1 → 0.5.4

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.
@@ -0,0 +1,4 @@
1
+ Given /^I launch the app$/ do
2
+ launch_app_in_simulator
3
+ wait_for_frank_to_come_up
4
+ end
@@ -23,7 +23,7 @@ end
23
23
  Then /^I wait to see a navigation bar titled "([^\"]*)"$/ do |expected_mark|
24
24
  Timeout::timeout(30) do
25
25
  values = frankly_map( 'navigationItemView', 'accessibilityLabel' )
26
- until values.include(expected_mark)
26
+ until values.include?(expected_mark)
27
27
  values = frankly_map( 'navigationItemView', 'accessibilityLabel' )
28
28
  sleep 0.1
29
29
  end
@@ -33,7 +33,7 @@ end
33
33
  Then /^I wait to not see a navigation bar titled "([^\"]*)"$/ do |expected_mark|
34
34
  Timeout::timeout(30) do
35
35
  values = frankly_map( 'navigationItemView', 'accessibilityLabel' )
36
- while values.include(expected_mark)
36
+ while values.include?(expected_mark)
37
37
  values = frankly_map( 'navigationItemView', 'accessibilityLabel' )
38
38
  sleep 0.1
39
39
  end
@@ -1,5 +1,5 @@
1
1
  module Frank
2
2
  module Cucumber
3
- VERSION = "0.5.2.1"
3
+ VERSION = "0.5.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -5,9 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 2
9
- - 1
10
- version: 0.5.2.1
8
+ - 4
9
+ version: 0.5.4
11
10
  platform: ruby
12
11
  authors:
13
12
  - Pete Hodgson
@@ -16,7 +15,7 @@ autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
17
 
19
- date: 2011-02-16 00:00:00 -08:00
18
+ date: 2011-03-02 00:00:00 -08:00
20
19
  default_executable:
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency
@@ -74,6 +73,7 @@ files:
74
73
  - example/features/step_definitions/example_steps.rb
75
74
  - example/features/support/env.rb
76
75
  - features-skeleton/my_first.feature
76
+ - features-skeleton/step_definitions/launch_steps.rb
77
77
  - features-skeleton/support/env.rb
78
78
  - frank-cucumber.gemspec
79
79
  - lib/frank-cucumber.rb