cuesmash 0.1.9.8 → 0.1.9.9

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: 067457f9c6c472d3454a377bf4ac0e5cae11e64f
4
- data.tar.gz: 6aacdaf46ff9f6ff7377d62db8807f15afca6863
3
+ metadata.gz: c2805e5ec878726f568d5ca70a2965adfe9bda9f
4
+ data.tar.gz: 5e5d4ffc439358edc4bae0b9d046621b2130d8bf
5
5
  SHA512:
6
- metadata.gz: 6a758e3b2ce774ec53a2b6c83a32bcdd77c11d48622a01827f113d1c8640f2482500fea1972e42b786d25e0cc5df7a5078e6bfc22490080d716ae98020af185c
7
- data.tar.gz: 44b6537513e85b2ca66e1c4bc0016b1a417c5fa72808edfa5ba7426cf5ceb0dfe7dedb9054419609ee375c3067c608f3ca2cb9a66690c39c10bd91da6034fee5
6
+ metadata.gz: c9dfb947231b523c204f11cf2bc5b3973375efb4b3ec43471045f7b0a8b161355d660731d81c97d976c94e2cb28ba66e9ae23bbeae9ea8b0583d1655d0fce9a7
7
+ data.tar.gz: 45b41701f5f862cc28bc8ae091704e7234c064ee9e9f867a9c3f2b40b143d36ed3aa7cba0149d18415cde52324f555e20165f7327ac4750754a46128a2d403e6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cuesmash (0.1.9.8)
4
+ cuesmash (0.1.9.9)
5
5
  CFPropertyList (>= 2.2.8)
6
6
  rest-client (~> 1.7.2)
7
7
  thor (>= 0.19.1)
@@ -42,7 +42,7 @@ GEM
42
42
  method_source (0.8.2)
43
43
  mime-types (2.4.3)
44
44
  multi_json (1.10.1)
45
- netrc (0.10.2)
45
+ netrc (0.10.3)
46
46
  pry (0.10.1)
47
47
  coderay (~> 1.1.0)
48
48
  method_source (~> 0.8.1)
@@ -51,7 +51,7 @@ GEM
51
51
  rb-fsevent (0.9.4)
52
52
  rb-inotify (0.9.5)
53
53
  ffi (>= 0.5.0)
54
- rest-client (1.7.2)
54
+ rest-client (1.7.3)
55
55
  mime-types (>= 1.16, < 3.0)
56
56
  netrc (~> 0.7)
57
57
  rspec (3.1.0)
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.8"
7
+ spec.version = "0.1.9.9"
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"
@@ -28,6 +28,7 @@ module Cuesmash
28
28
  # @return [type] [description]
29
29
  def self.execute(device:,
30
30
  os:,
31
+ scheme:,
31
32
  tags:,
32
33
  debug: false,
33
34
  format: nil,
@@ -83,11 +83,11 @@ module Cuesmash
83
83
  end
84
84
 
85
85
  def create_gemfile
86
- download_gist(gist_id: 'ea786f1cf0fdbe0febb3', final_file: 'Gemfile')
86
+ download_gist(gist_id: 'a5a689b072f0b69ec231', final_file: 'Gemfile')
87
87
  end
88
88
 
89
89
  def create_cuesmash_yml
90
- download_gist(gist_id: '146a3b40991e68cb261b', final_file: '.cuesmash.yml')
90
+ download_gist(gist_id: '788fd566f970703e772b', final_file: '.cuesmash.yml')
91
91
  end
92
92
 
93
93
  #
@@ -54,8 +54,8 @@ module Cuesmash
54
54
  # Compile the project
55
55
  if @config['platform'] == 'iOS'
56
56
 
57
- # Create new IosApp object
58
- @app = IosApp.new(file_name: options[:scheme].join(' '), build_configuration: @config['build_configuration'])
57
+ # # Create new IosApp object
58
+ # @app = IosApp.new(file_name: options[:scheme].join(' '), build_configuration: @config['build_configuration'])
59
59
 
60
60
  setup_ios
61
61
 
@@ -68,9 +68,8 @@ module Cuesmash
68
68
  say "\n============================\ntesting iOS #{os} on #{device}", :green
69
69
  Cuesmash::Command.execute(device: device,
70
70
  os: os,
71
- server: options[:server],
71
+ scheme: options[:scheme],
72
72
  tags: options[:tags],
73
- scheme: options[:scheme].join(' '),
74
73
  debug: options[:debug],
75
74
  app: @app,
76
75
  profile: options[:profile],
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.8
4
+ version: 0.1.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Fish
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-04-17 00:00:00.000000000 Z
13
+ date: 2015-04-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -245,3 +245,4 @@ test_files:
245
245
  - spec/ios_compiler_spec.rb
246
246
  - spec/plist_spec.rb
247
247
  - spec/spec_helper.rb
248
+ has_rdoc: