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 +4 -4
- data/Gemfile.lock +1 -1
- data/cuesmash.gemspec +1 -1
- data/lib/cuesmash/start.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0fef97fc4062ce62b8c404e00c5a7659c6c23389
|
4
|
+
data.tar.gz: 9f70c1b978d72d922be4c5ed372d6909939b9156
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fae85b35dfc67ad442e96d0ab4bc5872825a94cab113c3e92c6b3e0604ea6d7bcc2632f0be443e7e2a2fdb3ff2fa2b73b26cbcdc6221664913603dab7297cddc
|
7
|
+
data.tar.gz: 73d4ee3ac5b8e5ce67a150f1789b7e8dc4caa39151431c8f9df09f47c83076597a0a5f5256e6ae9579c39c2787a40d54889c3aa76be1f24b3ed4a0018f62e240
|
data/Gemfile.lock
CHANGED
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.
|
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"
|
data/lib/cuesmash/start.rb
CHANGED
@@ -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'])
|