briar 1.1.2 → 1.1.3

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: 7f374a08826fb7d8631082e58c303fd641e5abb4
4
- data.tar.gz: dc9631ef4de35c767bdfe180131bab727ded2b02
3
+ metadata.gz: d5dd36ef6fce8e13edb3a9b4891293a62e058d4a
4
+ data.tar.gz: 267fea0d1668bd93ab4900b44a5517d819f680ab
5
5
  SHA512:
6
- metadata.gz: a363d592011d1c37a410191390dd81cc14ba169d367eae7c46102397f4ff2acb4fae8f5aeabe6ff2751ecdb8d4350190dadeeb1f738bc98033e34c833a065704
7
- data.tar.gz: 01a34587d3a18c605b088d6d81dc315963e1f4f721358c55332fa2be2bc73b414c7c58767ac93b7bfa0a89975d7cd26408c46b8b5b8ebffc9f9f10b93cdb6b0d
6
+ metadata.gz: 826c278718fe0755d790545bc2dccb2e02228a2c9f2558639d0b37a1ae81da54365b8bc9f0201ba501439cca4fad0f736c4ae6b8379b76dda3720be1ca4fb756
7
+ data.tar.gz: 3bae857d0ec2a3952ba08100e2b54c96397f5965d306ee50767fc92e95b709202f9b5ac3ae1b08d3a14e30d89616eae8d197e47adda1841e6a8a8ee225996bc2
@@ -12,6 +12,11 @@ def expect_bundle_id
12
12
  end
13
13
 
14
14
  def expect_build_script(build_script)
15
+ if build_script.nil?
16
+ @log.fatal{ 'action requires a build script to create an ipa, but IPA_BUILD_SCRIPT has not been set' }
17
+ @log.fatal{ 'add IPA_BUILD_SCRIPT to your .env file or export it to your shell' }
18
+ exit 1
19
+ end
15
20
  unless File.exists?(File.expand_path(build_script))
16
21
  @log.fatal{ 'arguments say there is supposed to be a build script' }
17
22
  @log.fatal{ "expected it here '#{build_script}'" }
@@ -22,6 +27,11 @@ end
22
27
 
23
28
  def expect_ideviceinstaller
24
29
  bin_path = ENV['IDEVICEINSTALLER_BIN']
30
+ if bin_path.nil?
31
+ @log.fatal{ 'action requires ideviceinstaller, but IDEVICEINSTALLER_BIN has not been set' }
32
+ @log.fatal{ 'add IDEVICEINSTALLER_BIN to your .env file or export it to your shell' }
33
+ exit 1
34
+ end
25
35
  unless File.exists?(File.expand_path(bin_path))
26
36
  @log.fatal{'cannot find ideviceinstaller'}
27
37
  @log.fatal{ "expected it here '#{bin_path}'"}
@@ -31,6 +41,11 @@ def expect_ideviceinstaller
31
41
  end
32
42
 
33
43
  def expect_ipa(ipa_path)
44
+ if ipa_path.nil?
45
+ @log.fatal { 'action requires an ipa, but the IPA variable has not been set' }
46
+ @log.fatal { 'add IPA to your .env file or export it to your shell' }
47
+ exit 1
48
+ end
34
49
  unless File.exists?(File.expand_path(ipa_path))
35
50
  @log.fatal{'ipa does not exist'}
36
51
  @log.fatal{"expected it here '#{ipa_path}'"}
@@ -19,7 +19,7 @@ def warn_deprecated(version, msg)
19
19
  end
20
20
 
21
21
  def help_warn_destructive
22
- Rainbow('# These is are destructive operations! You have been warned.').red.underline
22
+ Rainbow('# These are destructive operations! You have been warned.').red.underline
23
23
  end
24
24
 
25
25
  def help_experimental
@@ -30,14 +30,14 @@ Gem::Specification.new do |gem|
30
30
  gem.required_ruby_version = '>= 1.9.3'
31
31
 
32
32
  gem.add_runtime_dependency 'rbx-require-relative', '~> 0.0'
33
- gem.add_runtime_dependency 'calabash-cucumber', '>= 0.9.168'
33
+ gem.add_runtime_dependency 'calabash-cucumber', '<= 0.11.0.pre', '>= 0.9.168'
34
34
  gem.add_runtime_dependency 'dotenv', '~> 0.9'
35
35
  gem.add_runtime_dependency 'ansi', '~> 1.4'
36
36
  gem.add_runtime_dependency 'rainbow', '~> 2.0'
37
- # downgrade because of xtc gem - wants ~> 1.4
37
+ # downgrade because of xtc gem - wants ~> 1.3.3.1
38
38
  gem.add_runtime_dependency 'retriable', '< 1.5', '>= 1.3'
39
- # test cloud requires 1.3.5, we want ~> 1.6
40
- gem.add_runtime_dependency 'bundler', '< 1.7', '>= 1.3.5'
39
+ # test cloud requires 1.3.5
40
+ gem.add_runtime_dependency 'bundler', '< 2.0', '>= 1.3.5'
41
41
  gem.add_runtime_dependency 'xamarin-test-cloud', '< 1.0', '>= 0.9.35'
42
42
  gem.add_runtime_dependency 'rake', '~> 10.3'
43
43
 
@@ -1,3 +1,3 @@
1
1
  module Briar
2
- VERSION = '1.1.2'
2
+ VERSION = '1.1.3'
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.1.2
4
+ version: 1.1.3
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-08-07 00:00:00.000000000 Z
11
+ date: 2014-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rbx-require-relative
@@ -28,6 +28,9 @@ dependencies:
28
28
  name: calabash-cucumber
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
+ - - "<="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.11.0.pre
31
34
  - - ">="
32
35
  - !ruby/object:Gem::Version
33
36
  version: 0.9.168
@@ -35,6 +38,9 @@ dependencies:
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
41
+ - - "<="
42
+ - !ruby/object:Gem::Version
43
+ version: 0.11.0.pre
38
44
  - - ">="
39
45
  - !ruby/object:Gem::Version
40
46
  version: 0.9.168
@@ -106,7 +112,7 @@ dependencies:
106
112
  requirements:
107
113
  - - "<"
108
114
  - !ruby/object:Gem::Version
109
- version: '1.7'
115
+ version: '2.0'
110
116
  - - ">="
111
117
  - !ruby/object:Gem::Version
112
118
  version: 1.3.5
@@ -116,7 +122,7 @@ dependencies:
116
122
  requirements:
117
123
  - - "<"
118
124
  - !ruby/object:Gem::Version
119
- version: '1.7'
125
+ version: '2.0'
120
126
  - - ">="
121
127
  - !ruby/object:Gem::Version
122
128
  version: 1.3.5
@@ -319,6 +325,6 @@ rubyforge_project:
319
325
  rubygems_version: 2.4.1
320
326
  signing_key:
321
327
  specification_version: 4
322
- summary: briar-1.1.2
328
+ summary: briar-1.1.3
323
329
  test_files: []
324
330
  has_rdoc: