mobmanager 0.0.2 → 0.0.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 +4 -4
- data/lib/mobmanager/mobile/platform/ios/simulator.rb +1 -1
- data/lib/mobmanager/version.rb +1 -1
- 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: 1e7e64073c0f7cc31eadfe7cab122bdf775e6902
|
|
4
|
+
data.tar.gz: 34f0a4c2395b2d2c72080098c7dfc612574d8529
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3dfe251a39c00c5a0903b486575cb4928227b49e59890027ee6b50bc67aaa8e232a1dd5ce137cab6a7c487799173f0702c5cf3ad8bc3d687d4452b3986c18c0
|
|
7
|
+
data.tar.gz: 36bd053e9bf56a9fec983c5961a54ea49109bb659ad1bf9ac94b151cd8f4c7cfc34651a49e04d853cd4b995fc3880a262c77c1dd856390b464743de58b7df830
|
|
@@ -27,7 +27,7 @@ module Platform
|
|
|
27
27
|
puts "ENV['IOS_DERIVED_DATA_PATH'] #{ENV['IOS_DERIVED_DATA_PATH']}"
|
|
28
28
|
fail("MobTest: Failed to determine app_path. Please check your ios.yml settings") if settings[:app_path].nil?
|
|
29
29
|
app = settings[:app_path].split('/').select{|element| element.include?'.app'}.first
|
|
30
|
-
system "xcodebuild -workspace #{settings[:workspace_path]} -scheme \"#{app.gsub('.app', '')}\" -configuration Debug -sdk \"#{settings[
|
|
30
|
+
system "xcodebuild -workspace #{settings[:workspace_path]} -scheme \"#{app.gsub('.app', '')}\" -configuration Debug -sdk \"#{settings[:sim_sdk]}\" -derivedDataPath \"~/\""
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
def setup_for_sauce(settings)
|
data/lib/mobmanager/version.rb
CHANGED