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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6abcbc96a57182f7dc27f67936d8c42897d52c1a
4
- data.tar.gz: e8a2f0b7e6cc2c996270643c4913fb9c1a61ceb9
3
+ metadata.gz: 8d677ec71ee9f083e60c550336d1b1dfef8e6fe2
4
+ data.tar.gz: e2a67e0f9e6482af7f5b7b08ecba8bb93289484b
5
5
  SHA512:
6
- metadata.gz: 2c2482c59ab5d127bbec9a8aed4434b4e6b3269b17f90bca38a244e247c2c2206705fefdc5b14b3267c439e0cd10777dc9136059f5dbed4213f26edf9893b773
7
- data.tar.gz: 1225f5586a7d7a169c9539087fb295099db367c12ecf8407894db4a4d18bb115e7a4601d877171381b7c1e171b3d962b7f294642e1490a518c51bbaa2948fbcb
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({ipa:ipa, provision:mobile_prov, id:signing_id, wildcard:wildcard})
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.166pre4'
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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Briar
2
- VERSION = '0.1.3.b10'
2
+ VERSION = '0.1.3.b11'
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: 0.1.3.b10
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-27 00:00:00.000000000 Z
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.166pre4
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.166pre4
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.b10
165
+ summary: briar-0.1.3.b11
166
166
  test_files:
167
167
  - spec/spec_helper.rb