briar 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +9 -9
- data/README.md +15 -17
- data/bin/briar +94 -55
- data/bin/briar_helpers.rb +18 -5
- data/bin/briar_resign.rb +272 -0
- data/briar.gemspec +3 -6
- data/cucumber.yml.example +20 -3
- data/features/step_definitions/briar_core_steps.rb +1 -1
- data/features/step_definitions/control/button_steps.rb +1 -1
- data/features/step_definitions/control/slider_steps.rb +2 -0
- data/features/step_definitions/email_steps.rb +12 -12
- data/features/step_definitions/keyboard_steps.rb +1 -0
- data/features/step_definitions/label_steps.rb +1 -1
- data/features/step_definitions/picker/date_picker_steps.rb +22 -3
- data/features/step_definitions/table_steps.rb +17 -6
- data/features/step_definitions/text_view_steps.rb +4 -10
- data/lib/briar.rb +10 -1
- data/lib/briar/alerts_and_sheets/action_sheet.rb +2 -2
- data/lib/briar/alerts_and_sheets/alert_view.rb +78 -19
- data/lib/briar/bars/navbar.rb +56 -20
- data/lib/briar/briar_core.rb +80 -9
- data/lib/briar/control/button.rb +16 -19
- data/lib/briar/email.rb +88 -30
- data/lib/briar/keyboard.rb +40 -40
- data/lib/briar/label.rb +1 -3
- data/lib/briar/picker/date_picker.rb +9 -1
- data/lib/briar/picker/date_picker_manipulation.rb +2 -2
- data/lib/briar/table.rb +56 -25
- data/lib/briar/text_field.rb +6 -4
- data/lib/briar/text_view.rb +33 -8
- data/lib/briar/version.rb +1 -1
- metadata +6 -34
- data/install-calabash-framework.sh.example +0 -10
data/lib/briar/version.rb
CHANGED
metadata
CHANGED
@@ -1,45 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: briar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Moody
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: calabash-cucumber
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - '='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.151
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - '='
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 0.9.151
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - '='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 10.1.0
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - '='
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 10.1.0
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: bundler
|
43
15
|
requirement: !ruby/object:Gem::Requirement
|
44
16
|
requirements:
|
45
17
|
- - ! '>='
|
@@ -53,7 +25,7 @@ dependencies:
|
|
53
25
|
- !ruby/object:Gem::Version
|
54
26
|
version: '0'
|
55
27
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
28
|
+
name: rake
|
57
29
|
requirement: !ruby/object:Gem::Requirement
|
58
30
|
requirements:
|
59
31
|
- - ! '>='
|
@@ -109,6 +81,7 @@ files:
|
|
109
81
|
- Rakefile
|
110
82
|
- bin/briar
|
111
83
|
- bin/briar_helpers.rb
|
84
|
+
- bin/briar_resign.rb
|
112
85
|
- briar.gemspec
|
113
86
|
- cucumber.yml.example
|
114
87
|
- dotirbc+briar
|
@@ -134,7 +107,6 @@ files:
|
|
134
107
|
- features/support/env.rb
|
135
108
|
- features/support/hooks.rb
|
136
109
|
- features/support/launch.rb
|
137
|
-
- install-calabash-framework.sh.example
|
138
110
|
- lib/briar.rb
|
139
111
|
- lib/briar/alerts_and_sheets/action_sheet.rb
|
140
112
|
- lib/briar/alerts_and_sheets/alert_view.rb
|
@@ -183,10 +155,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
155
|
version: '0'
|
184
156
|
requirements: []
|
185
157
|
rubyforge_project:
|
186
|
-
rubygems_version: 2.
|
158
|
+
rubygems_version: 2.1.5
|
187
159
|
signing_key:
|
188
160
|
specification_version: 4
|
189
|
-
summary: briar-0.0.
|
161
|
+
summary: briar-0.0.9
|
190
162
|
test_files:
|
191
163
|
- features/step_definitions/alerts_and_sheets/action_sheet_steps.rb
|
192
164
|
- features/step_definitions/alerts_and_sheets/alert_view_steps.rb
|
@@ -1,10 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
current_dir=`pwd`
|
3
|
-
cd ~/git/calabash-ios/calabash-cucumber
|
4
|
-
rake build_server
|
5
|
-
cd "$current_dir"
|
6
|
-
briar rm-cal-targets
|
7
|
-
cp ~/git/calabash-ios/calabash-cucumber/staticlib/calabash.framework.zip ./
|
8
|
-
rm -rf calabash.framework
|
9
|
-
unzip calabash.framework.zip
|
10
|
-
rm -rf calabash.framework.zip
|