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 +4 -4
- data/features/step_definitions/bars/navbar_steps.rb +2 -4
- data/features/step_definitions/control/slider_steps.rb +0 -2
- data/features/step_definitions/image_view_steps.rb +0 -2
- data/features/step_definitions/label_steps.rb +0 -2
- data/features/step_definitions/picker/picker_steps.rb +0 -2
- data/features/step_definitions/text_field_steps.rb +0 -2
- data/lib/briar/control/button.rb +0 -2
- data/lib/briar/picker/date_picker.rb +0 -3
- data/lib/briar/picker/date_picker_manipulation.rb +0 -1
- data/lib/briar/picker/picker.rb +1 -1
- data/lib/briar/version.rb +1 -1
- metadata +2 -3
- data/run-tests.sh +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1aac180fa4f9c1604dd8865d6a18c29094557c71
|
4
|
+
data.tar.gz: 97fd1e500e0beefd47891cb37429c32632cce93d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/briar/control/button.rb
CHANGED
@@ -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]
|
data/lib/briar/picker/picker.rb
CHANGED
data/lib/briar/version.rb
CHANGED
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.
|
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.
|
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
|
data/run-tests.sh
DELETED