cuesmash 0.1.9.4 → 0.1.9.5

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: 9921ccefe5c5c05062e464057755b77ee5d45c84
4
- data.tar.gz: 268ce882d658ec066f96e17e07bb787367cd0e6d
3
+ metadata.gz: 0fef97fc4062ce62b8c404e00c5a7659c6c23389
4
+ data.tar.gz: 9f70c1b978d72d922be4c5ed372d6909939b9156
5
5
  SHA512:
6
- metadata.gz: 4a93d3163de9af411595fa0c0ca0c2c251837ac76e899b6f251fd7ce94423142fcfdd5cc4ce796886d1b81b5fd593acecf12980192b732ec277c8960c02ddfb4
7
- data.tar.gz: 8baef544df548669dd995e49d0572e5d9e6592c9909cb6cd6d8ab1ba21ed41c2266f829d70f61c4b38bf76812e98d626b47c2d5138dbe0493ba80da53b6d44b0
6
+ metadata.gz: fae85b35dfc67ad442e96d0ab4bc5872825a94cab113c3e92c6b3e0604ea6d7bcc2632f0be443e7e2a2fdb3ff2fa2b73b26cbcdc6221664913603dab7297cddc
7
+ data.tar.gz: 73d4ee3ac5b8e5ce67a150f1789b7e8dc4caa39151431c8f9df09f47c83076597a0a5f5256e6ae9579c39c2787a40d54889c3aa76be1f24b3ed4a0018f62e240
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cuesmash (0.1.9.3)
4
+ cuesmash (0.1.9.4)
5
5
  CFPropertyList (>= 2.2.8)
6
6
  rest-client (~> 1.7.2)
7
7
  thor (>= 0.19.1)
data/cuesmash.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "cuesmash"
7
- spec.version = "0.1.9.4"
7
+ spec.version = "0.1.9.5"
8
8
  spec.authors = ["Alex Fish", "Jarod McBride", "Tiago Castro"]
9
9
  spec.email = ["fish@ustwo.co.uk", "jarod@ustwo.com", "castro@ustwo.com"]
10
10
  spec.description = "Appium project manager"
@@ -52,7 +52,7 @@ module Cuesmash
52
52
  if @config['platform'] == 'iOS'
53
53
 
54
54
  # Create new IosApp object
55
- @app = IosApp.new(file_name: options[:scheme], build_configuration: @config['build_configuration'])
55
+ @app = IosApp.new(file_name: options[:scheme].join(" "), build_configuration: @config['build_configuration'])
56
56
 
57
57
  setup_ios
58
58
 
@@ -114,6 +114,7 @@ module Cuesmash
114
114
  method_option :app_name, type: :string, aliases: "-n", desc: "Android only: the name of the app"
115
115
  def build
116
116
 
117
+ byebug
117
118
  # get the cuesmash.yml config
118
119
  @config = load_config
119
120
 
@@ -156,7 +157,7 @@ module Cuesmash
156
157
  # helper methods
157
158
  #
158
159
  def setup_ios
159
- @app = IosApp.new(file_name: options[:scheme], build_configuration: @config['build_configuration'])
160
+ @app = IosApp.new(file_name: options[:scheme].join(" "), build_configuration: @config['build_configuration'])
160
161
 
161
162
  # Compile the project
162
163
  compiler = Cuesmash::IosCompiler.new(scheme: options[:scheme].join(" "), tmp_dir: @app.tmp_dir, build_configuration: @config['build_configuration'])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cuesmash
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9.4
4
+ version: 0.1.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Fish