briar 0.1.3.b1 → 0.1.3.b2

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: 5231e29949bd6dce316e46e8892b0b5785307430
4
- data.tar.gz: 259b97c2bf9bb0ec0f32854c5255b2792469fb3f
3
+ metadata.gz: 1aac180fa4f9c1604dd8865d6a18c29094557c71
4
+ data.tar.gz: 97fd1e500e0beefd47891cb37429c32632cce93d
5
5
  SHA512:
6
- metadata.gz: 99d23ae36a4b4a2dd0f896435b402edcaaf4e3ab9f554597cc2b46664f2d0642f277e7f6cf81afb9e5ad9bc5f0670688412262d987a3230cd37b29cd8ea904c6
7
- data.tar.gz: af09c628255dc79dc9e1d828fa1deaff33c5e157d2ee389e453d152290e175a65e12974805053849dff0809cd3752a8f019aded849192f1f349246d3972fb850
6
+ metadata.gz: 271f2054cba3df7ef8e3d9e20478124364dfb8fa7beeb12ab8b6f2e379ceb1160b0e412e3d2503966f0d4d2c1da8404a2faa8a51e3853e8638d91f6532b9211e
7
+ data.tar.gz: 710690810ea51d2299684f0b401ef5a56f7dc07fdb50933dcd5185fb6835dd7bbece5c436e15a3ba32c434dbe8782c2d5d771704d37ccd49eba5438106e1a9b5
@@ -1,5 +1,3 @@
1
- #include Briar::Bars
2
-
3
1
  # navigation back item, distinct from left bar button item
4
2
  Then /^I should see navbar back button$/ do
5
3
  should_see_navbar_back_button
@@ -73,8 +71,8 @@ end
73
71
  When /^I go back, I should see the "([^"]*)" view$/ do |view_id|
74
72
  touch_transition('navigationItemButtonView first',
75
73
  "view marked:'#{view_id}'",
76
- {:timeout=>TOUCH_TRANSITION_TIMEOUT,
77
- :retry_frequency=>TOUCH_TRANSITION_RETRY_FREQ})
74
+ {:timeout => TOUCH_TRANSITION_TIMEOUT,
75
+ :retry_frequency => TOUCH_TRANSITION_RETRY_FREQ})
78
76
  end
79
77
 
80
78
  Then /^I should see today's date in the navbar$/ do
@@ -1,5 +1,3 @@
1
- #include Briar::Control::Slider
2
-
3
1
  When /^I change the "([^"]*)" slider to (\d+)$/ do |slider_id, value|
4
2
  wait_for_query("slider marked:'#{slider_id}'")
5
3
  change_slider_value_to slider_id, value
@@ -1,5 +1,3 @@
1
- #include Briar::ImageView
2
-
3
1
  Then /^I should (see|not see) (?:image|a image|an image) named "([^"]*)"$/ do |visibility, name|
4
2
  if visibility.eql? "see"
5
3
  should_see_image_view name
@@ -1,5 +1,3 @@
1
- #include Briar::Label
2
-
3
1
  Then /^I should (see|not see) "([^"]*)" in label "([^"]*)"$/ do |visibility, text, name|
4
2
  if visibility.eql? "see"
5
3
  should_see_label_with_text(name, text)
@@ -1,5 +1,3 @@
1
- #include Briar::Picker
2
-
3
1
  # may only work on circular pickers - does _not_ work on non-circular pickers
4
2
  # because the visible titles do _not_ follow the selected index
5
3
  Then /^I should see picker "([^"]*)" with row "([^"]*)" selected$/ do |picker_name, row_named|
@@ -1,5 +1,3 @@
1
- #include Briar::TextField
2
-
3
1
  Then /^I should see the "([^"]*)" text field$/ do |name|
4
2
  should_see_text_field name
5
3
  end
@@ -3,8 +3,6 @@ require 'calabash-cucumber'
3
3
  module Briar
4
4
  module Control
5
5
  module Button
6
- include Briar::Core
7
-
8
6
  def button_exists? (button_id)
9
7
  res = query("button marked:'#{button_id}'", :alpha)
10
8
  if res.empty?
@@ -23,9 +23,6 @@ examples
23
23
  module Briar
24
24
  module Picker
25
25
  module DateSteps
26
- include Briar::Picker::DateCore
27
- include Briar::Picker::DateManipulation
28
-
29
26
  def should_see_label_has_time_i_just_entered (label_id)
30
27
  should_see_label label_id
31
28
  query_str = "label marked:'#{label_id}'"
@@ -50,7 +50,6 @@ BRIAR_DATE_CONVERSION_FORMATS = {:objc => {:zoned => BRIAR_PICKER_OBJC_DATE_AND_
50
50
  module Briar
51
51
  module Picker
52
52
  module DateManipulation
53
- include Briar::Picker::DateCore
54
53
 
55
54
  def date_format_for_target (target, zoned)
56
55
  res = BRIAR_DATE_CONVERSION_FORMATS[target][zoned]
@@ -2,7 +2,7 @@ require 'calabash-cucumber'
2
2
 
3
3
  module Briar
4
4
  module Picker
5
- include Briar::Picker_Shared
5
+
6
6
  def should_see_picker (picker_name)
7
7
  picker_exists = !query("pickerView marked:'#{picker_name}").empty?
8
8
  unless picker_exists
@@ -1,3 +1,3 @@
1
1
  module Briar
2
- VERSION = '0.1.3.b1'
2
+ VERSION = '0.1.3.b2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: briar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3.b1
4
+ version: 0.1.3.b2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Moody
@@ -121,7 +121,6 @@ files:
121
121
  - lib/briar/text_field.rb
122
122
  - lib/briar/text_view.rb
123
123
  - lib/briar/version.rb
124
- - run-tests.sh
125
124
  - spec/spec_helper.rb
126
125
  homepage: https://github.com/jmoody/briar
127
126
  licenses:
@@ -146,7 +145,7 @@ rubyforge_project:
146
145
  rubygems_version: 2.1.11
147
146
  signing_key:
148
147
  specification_version: 4
149
- summary: briar-0.1.3.b1
148
+ summary: briar-0.1.3.b2
150
149
  test_files:
151
150
  - features/step_definitions/alerts_and_sheets/action_sheet_steps.rb
152
151
  - features/step_definitions/alerts_and_sheets/alert_view_steps.rb
@@ -1,4 +0,0 @@
1
- #!/bin/sh
2
- bundle update
3
- bundle install
4
- bundle exec rspec spec