briar 1.3.1 → 1.3.2
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/CHANGELOG.md +5 -0
- data/bin/briar_resign.rb +4 -0
- data/bin/briar_xtc.rb +6 -0
- data/lib/briar/table.rb +2 -2
- data/lib/briar/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 20f53f71b76192acaaf7af44425650cdbf9d2b36
|
|
4
|
+
data.tar.gz: e27ed22ab8898e9d3214261a4bc9f2a33a2a482e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6439175b5f0fca53cbc759849fd970789953857d9e8d63b7da761e4969058c0dc46668499eba3b104511a59e6ee20719cff81d5e0bcade3e9b21a5905915019
|
|
7
|
+
data.tar.gz: 1e2eb3798af338b7a4a08df7f5753d0950dc6e15c4bc0d2dac7f55ff173f1d55f50f7a8a820cae9f3ecf9a95de298c10ce625ebe068a4dc8cdc927c87d7ae1f6
|
data/CHANGELOG.md
CHANGED
data/bin/briar_resign.rb
CHANGED
|
@@ -180,6 +180,10 @@ def resign_ipa(options)
|
|
|
180
180
|
exit 1
|
|
181
181
|
end
|
|
182
182
|
|
|
183
|
+
Dir.glob("#{abs_app_path}/**/*.xcent").each do |existing_xcent|
|
|
184
|
+
puts "INFO: deleting the existing: '#{existing_xcent}'"
|
|
185
|
+
FileUtils.rm_rf(existing_xcent)
|
|
186
|
+
end
|
|
183
187
|
|
|
184
188
|
plist = CFPropertyList::List.new(:file => info_plist_path)
|
|
185
189
|
data = CFPropertyList.native_types(plist.value)
|
data/bin/briar_xtc.rb
CHANGED
|
@@ -18,6 +18,7 @@ def briar_xtc_submit(device_set, profile, opts={})
|
|
|
18
18
|
:async_submit => ENV['XTC_WAIT_FOR_RESULTS'] == '0',
|
|
19
19
|
:series => ENV['XTC_SERIES'],
|
|
20
20
|
:user => ENV['XTC_USER'],
|
|
21
|
+
:dsym => ENV['XTC_DSYM'],
|
|
21
22
|
:rebuild => true}
|
|
22
23
|
|
|
23
24
|
opts = default_opts.merge(opts)
|
|
@@ -133,6 +134,11 @@ def briar_xtc_submit(device_set, profile, opts={})
|
|
|
133
134
|
args << opts[:series]
|
|
134
135
|
end
|
|
135
136
|
|
|
137
|
+
if opts[:dsym]
|
|
138
|
+
args << '--dsym-file'
|
|
139
|
+
args << opts[:dsym]
|
|
140
|
+
end
|
|
141
|
+
|
|
136
142
|
print_args = args.dup
|
|
137
143
|
|
|
138
144
|
obscured_key = "#{api_key[0,1]}***#{api_key[api_key.length-1,1]}"
|
data/lib/briar/table.rb
CHANGED
|
@@ -236,8 +236,8 @@ module Briar
|
|
|
236
236
|
end
|
|
237
237
|
|
|
238
238
|
def swipe_on_row (dir, row_id, table_id=nil)
|
|
239
|
-
if ios7? and simulator?
|
|
240
|
-
pending('
|
|
239
|
+
if (ios7? || ios8?) and simulator?
|
|
240
|
+
pending('Apple bug on iOS > 6 Simulators - swiping does not work.')
|
|
241
241
|
end
|
|
242
242
|
wait_for_row row_id, {:table_id => table_id}
|
|
243
243
|
query_str = query_str_for_row row_id, table_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: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joshua Moody
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rbx-require-relative
|
|
@@ -398,6 +398,6 @@ rubyforge_project:
|
|
|
398
398
|
rubygems_version: 2.4.5
|
|
399
399
|
signing_key:
|
|
400
400
|
specification_version: 4
|
|
401
|
-
summary: briar-1.3.
|
|
401
|
+
summary: briar-1.3.2
|
|
402
402
|
test_files: []
|
|
403
403
|
has_rdoc:
|