briar 0.1.3.b10 → 0.1.3.b11
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.
- checksums.yaml +4 -4
- data/bin/briar_resign.rb +4 -1
- data/briar.gemspec +1 -1
- data/lib/briar/briar_core.rb +10 -0
- data/lib/briar/table.rb +0 -4
- data/lib/briar/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d677ec71ee9f083e60c550336d1b1dfef8e6fe2
|
4
|
+
data.tar.gz: e2a67e0f9e6482af7f5b7b08ecba8bb93289484b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82ec61965e9e90dd18471816c3a6da02ecddd54128d0abb6e35a031add8c6c7e74f151d39790748b50b7ec513cf9f33c8c99ed0a9ddb7051db0ac3117b53b288
|
7
|
+
data.tar.gz: ab84ab650567ba72216a7d3e1284f24338e19166bcb2f79c7b4925b1093561453db6f4be6db11e56c93b5071c1d9dc527449191140877313c6bc7bdb7cd03f72
|
data/bin/briar_resign.rb
CHANGED
@@ -70,7 +70,10 @@ def briar_resign(args)
|
|
70
70
|
puts "will resign with identity '#{signing_id}'"
|
71
71
|
end
|
72
72
|
|
73
|
-
resign_ipa({
|
73
|
+
resign_ipa({:ipa => ipa,
|
74
|
+
:provision => mobile_prov,
|
75
|
+
:id => signing_id,
|
76
|
+
:wildcard => wildcard})
|
74
77
|
|
75
78
|
end
|
76
79
|
|
data/briar.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |gem|
|
|
26
26
|
gem.required_ruby_version = '>= 1.8.7'
|
27
27
|
|
28
28
|
gem.add_runtime_dependency 'rbx-require-relative', '~> 0.0.9'
|
29
|
-
gem.add_runtime_dependency 'calabash-cucumber', '>= 0.9.
|
29
|
+
gem.add_runtime_dependency 'calabash-cucumber', '>= 0.9.166'
|
30
30
|
gem.add_runtime_dependency 'rake', '~>10.1'
|
31
31
|
# downgrading to 1.0.0 from 1.2.0
|
32
32
|
# https://trello.com/c/YKREVfCX/630-lesspainfulformatter-should-depend-on-syntax-1-2-0
|
data/lib/briar/briar_core.rb
CHANGED
@@ -238,6 +238,16 @@ module Briar
|
|
238
238
|
end
|
239
239
|
end
|
240
240
|
|
241
|
+
def warn_pretty(msg)
|
242
|
+
# todo warn_pretty does not output on a new line when called within cucumber
|
243
|
+
msg = "WARN: #{msg}"
|
244
|
+
begin
|
245
|
+
puts "\033[34m#{msg}\033[0m"
|
246
|
+
rescue
|
247
|
+
puts "#{msg}"
|
248
|
+
end
|
249
|
+
end
|
250
|
+
|
241
251
|
end
|
242
252
|
end
|
243
253
|
|
data/lib/briar/table.rb
CHANGED
@@ -262,10 +262,6 @@ module Briar
|
|
262
262
|
end
|
263
263
|
|
264
264
|
def should_see_delete_confirmation_in_row(row_id, table_id=nil)
|
265
|
-
if ios7?
|
266
|
-
pending 'cannot detect delete confirmation in iOS 7'
|
267
|
-
end
|
268
|
-
|
269
265
|
query_str = query_str_for_confirm_delete_in_row(row_id, table_id)
|
270
266
|
timeout = 5
|
271
267
|
msg = "waited for '#{timeout}' seconds but did not see 'Delete' confirmation in row '#{row_id}'"
|
data/lib/briar/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.b11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Moody
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rbx-require-relative
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.9.
|
33
|
+
version: 0.9.166
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.9.
|
40
|
+
version: 0.9.166
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,6 +162,6 @@ rubyforge_project:
|
|
162
162
|
rubygems_version: 2.2.1
|
163
163
|
signing_key:
|
164
164
|
specification_version: 4
|
165
|
-
summary: briar-0.1.3.
|
165
|
+
summary: briar-0.1.3.b11
|
166
166
|
test_files:
|
167
167
|
- spec/spec_helper.rb
|