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 +4 -4
- data/Gemfile.lock +3 -3
- data/cuesmash.gemspec +1 -1
- data/lib/cuesmash/command.rb +1 -0
- data/lib/cuesmash/setup.rb +2 -2
- data/lib/cuesmash/start.rb +3 -4
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2805e5ec878726f568d5ca70a2965adfe9bda9f
|
|
4
|
+
data.tar.gz: 5e5d4ffc439358edc4bae0b9d046621b2130d8bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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"
|
data/lib/cuesmash/command.rb
CHANGED
data/lib/cuesmash/setup.rb
CHANGED
|
@@ -83,11 +83,11 @@ module Cuesmash
|
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
def create_gemfile
|
|
86
|
-
download_gist(gist_id: '
|
|
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: '
|
|
90
|
+
download_gist(gist_id: '788fd566f970703e772b', final_file: '.cuesmash.yml')
|
|
91
91
|
end
|
|
92
92
|
|
|
93
93
|
#
|
data/lib/cuesmash/start.rb
CHANGED
|
@@ -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
|
-
|
|
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.
|
|
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-
|
|
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:
|