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: 1e7e64073c0f7cc31eadfe7cab122bdf775e6902
4
- data.tar.gz: 34f0a4c2395b2d2c72080098c7dfc612574d8529
3
+ metadata.gz: 6037e14bc9d7f52cfea3782645d85e852d9d0687
4
+ data.tar.gz: f1c57ba353d37db5c26c4509b100a2ed0788d833
5
5
  SHA512:
6
- metadata.gz: b3dfe251a39c00c5a0903b486575cb4928227b49e59890027ee6b50bc67aaa8e232a1dd5ce137cab6a7c487799173f0702c5cf3ad8bc3d687d4452b3986c18c0
7
- data.tar.gz: 36bd053e9bf56a9fec983c5961a54ea49109bb659ad1bf9ac94b151cd8f4c7cfc34651a49e04d853cd4b995fc3880a262c77c1dd856390b464743de58b7df830
6
+ metadata.gz: ee4360efc6cd6b044e8eae9b4a7d66589e0a4ed4fbefa2020d144480ca865f73dca572e1d00580af37286c55a625abe61d92245b0f4372ffee62b7d41797d0d7
7
+ data.tar.gz: 4c7af324358275ab6a8c85c2967b9c183330c1e27425afb8224830ff33e4b6ee19e22d9489ea6a398620124e126fb4e5f28d58dd38692bc57e3e24e36eeafc3b
data/README.md CHANGED
@@ -1,2 +1,2 @@
1
- # MobManager
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
@@ -64,7 +64,7 @@ module Mobile
64
64
 
65
65
  def start_server(id=nil, log_level='--log-level error')
66
66
  udid = "--udid #{id}" unless id.nil?
67
- command = "appium #{udid} #{log_level}"
67
+ command = "appium #{udid} #{log_level} --session-override"
68
68
  spawn command
69
69
  end
70
70
  end
@@ -5,7 +5,6 @@ module Platform
5
5
  module Device
6
6
 
7
7
  def start_ios_device
8
- #TODO
9
8
  puts "start_ios_device place holder"
10
9
  end
11
10
  end
@@ -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[:sim_sdk]}\" -derivedDataPath \"~/\""
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)
@@ -1,3 +1,3 @@
1
1
  module Mobmanager
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
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 = ['miltondavalos@gmail.com']
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/miltondavalos/MobManager'
14
- spec.license = 'MIT'
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.3
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: 2015-12-09 00:00:00.000000000 Z
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
- - miltondavalos@gmail.com
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/miltondavalos/MobManager
48
+ homepage: https://github.com/m-davalos/mobmanager
49
49
  licenses:
50
- - MIT
50
+ - Mobiquity, Inc.
51
51
  metadata: {}
52
52
  post_install_message:
53
53
  rdoc_options: []