mobmanager 0.0.3 → 0.0.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6037e14bc9d7f52cfea3782645d85e852d9d0687
|
4
|
+
data.tar.gz: f1c57ba353d37db5c26c4509b100a2ed0788d833
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee4360efc6cd6b044e8eae9b4a7d66589e0a4ed4fbefa2020d144480ca865f73dca572e1d00580af37286c55a625abe61d92245b0f4372ffee62b7d41797d0d7
|
7
|
+
data.tar.gz: 4c7af324358275ab6a8c85c2967b9c183330c1e27425afb8224830ff33e4b6ee19e22d9489ea6a398620124e126fb4e5f28d58dd38692bc57e3e24e36eeafc3b
|
data/README.md
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
#
|
1
|
+
# mobmanager
|
2
2
|
Manages calls to the Appium server and provides methods to manage interaction with emulators, simulators and devices for Android and iOS
|
@@ -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
data/mobmanager.gemspec
CHANGED
@@ -7,11 +7,11 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "mobmanager"
|
8
8
|
spec.version = Mobmanager::VERSION
|
9
9
|
spec.authors = ['Milton Davalos']
|
10
|
-
spec.email = ['
|
10
|
+
spec.email = ['mdavalos@mobiquityinc.com']
|
11
11
|
spec.summary = %q{Provides methods to manage Appium server}
|
12
12
|
spec.description = %q{Provides methods to start/end Appium server and management of apps in Android and iOS}
|
13
|
-
spec.homepage = 'https://github.com/
|
14
|
-
spec.license = '
|
13
|
+
spec.homepage = 'https://github.com/m-davalos/mobmanager'
|
14
|
+
spec.license = 'Mobiquity, Inc.'
|
15
15
|
spec.files = `git ls-files`.split("\n")
|
16
16
|
spec.require_paths = ["lib"]
|
17
17
|
spec.add_dependency 'require_all'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mobmanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Milton Davalos
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: require_all
|
@@ -27,7 +27,7 @@ dependencies:
|
|
27
27
|
description: Provides methods to start/end Appium server and management of apps in
|
28
28
|
Android and iOS
|
29
29
|
email:
|
30
|
-
-
|
30
|
+
- mdavalos@mobiquityinc.com
|
31
31
|
executables: []
|
32
32
|
extensions: []
|
33
33
|
extra_rdoc_files: []
|
@@ -45,9 +45,9 @@ files:
|
|
45
45
|
- lib/mobmanager/mobile/platform/ios/simulator.rb
|
46
46
|
- lib/mobmanager/version.rb
|
47
47
|
- mobmanager.gemspec
|
48
|
-
homepage: https://github.com/
|
48
|
+
homepage: https://github.com/m-davalos/mobmanager
|
49
49
|
licenses:
|
50
|
-
-
|
50
|
+
- Mobiquity, Inc.
|
51
51
|
metadata: {}
|
52
52
|
post_install_message:
|
53
53
|
rdoc_options: []
|