briar 1.3.1 → 1.3.2

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: 1cc260e40fac68371ccb3095307b14b05d06eaf7
4
- data.tar.gz: ad2381e57a1196b80f1ebde90aba7891d3e65b7f
3
+ metadata.gz: 20f53f71b76192acaaf7af44425650cdbf9d2b36
4
+ data.tar.gz: e27ed22ab8898e9d3214261a4bc9f2a33a2a482e
5
5
  SHA512:
6
- metadata.gz: 27fa66df0a42df249ccf8a08b31f2dfa130aa0299d475daab98fcb745acb7f006490d7a1c0a4b8537ac7b108fe4f058622722c33efb69df32186a776b4d92de9
7
- data.tar.gz: 23466b32c03c4eb1aeed17e1815c12bb0a042734aa0a22dcf1ee1af1907e4248ac999cbd2df2f415bb6e04174c03346b2b43f11128c6426928c82915f475ad0f
6
+ metadata.gz: d6439175b5f0fca53cbc759849fd970789953857d9e8d63b7da761e4969058c0dc46668499eba3b104511a59e6ee20719cff81d5e0bcade3e9b21a5905915019
7
+ data.tar.gz: 1e2eb3798af338b7a4a08df7f5753d0950dc6e15c4bc0d2dac7f55ff173f1d55f50f7a8a820cae9f3ecf9a95de298c10ce625ebe068a4dc8cdc927c87d7ae1f6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 1.3.2
2
+
3
+ * Resigning needs to remove existing .xcent #56
4
+ * Support XTC\_DSYM for uploading dSYMs #55
5
+
1
6
  ### 1.3.1
2
7
 
3
8
  * $ briar install calabash-server only installs the framework
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('swiping on rows is not available on iOS 7 because of a bug in Xcode 5 simulator')
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
@@ -1,3 +1,3 @@
1
1
  module Briar
2
- VERSION = '1.3.1'
2
+ VERSION = '1.3.2'
3
3
  end
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.1
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-05 00:00:00.000000000 Z
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.1
401
+ summary: briar-1.3.2
402
402
  test_files: []
403
403
  has_rdoc: