cuesmash 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5461fca2c43c75253de649517c2223f7a23923cc
4
- data.tar.gz: 75213b4e828337fdfbf552ae3a437a2f618bcc11
3
+ metadata.gz: b65d8062117d5866f02ad3a690f145710dc561ba
4
+ data.tar.gz: d9848cf30104cba9c1f517c2f24866dc32181d91
5
5
  SHA512:
6
- metadata.gz: 38be4d3a423fe30bce40269cc9afef122c40b6afcd9c135244b7825137b9e89b046ee163aa0e5d5d4e046d3b8ac94dec9a5be761eb244ee1752ba4494b02a811
7
- data.tar.gz: 4914d7c7f0d77f54eb5942001773bfe879f2a86298888b367bc354296f9370aad54b435885c50022617facd3615d4e39d9dc3b7c9459705db6ae466f5c12b2a6
6
+ metadata.gz: 8c47bb7bda62872e180e46ab41bc6492d06ce4e6052b5ae3e6da9e2c3cae419648f32b51a42ee3a4dca8fd0bf99507a787812a593dfb0f7c97713d25483281b7
7
+ data.tar.gz: c1833600fea370b40b6f2034c930ba60e1ad8dd2574bc3074651297f034a8273bfa9eaf44da407367077271b86389114ba09fd0c737c4e0d11e385f15fbb50a5
@@ -0,0 +1,3 @@
1
+ ## Version
2
+ ### 0.6.0
3
+ Breaking change for Appium 1.5 where `newCommandTimeout` is now expecting an Int instead of a string.
data/README.md CHANGED
@@ -74,6 +74,7 @@ Cover how to configure the travis.yml file
74
74
  ## Building and pushing
75
75
 
76
76
  - make sure all tests are passing
77
+ - update CHANGELOG.md
77
78
  - update `cuesmash.gemspec` version number
78
79
  - `gem build cuesmash.gemspec `
79
80
  - `gem uninstall -x cuesmash && rake install `
@@ -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.5.0"
7
+ spec.version = "0.6.0"
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"
@@ -67,7 +67,7 @@ module Cuesmash
67
67
  text << "deviceName = \"#{device_name}\"\n"
68
68
  text << "platformVersion = \"#{platform_version}\"\n" unless platform_version.nil?
69
69
  text << "app = \"#{app}\"\n"
70
- text << "newCommandTimeout = \"#{new_command_timeout}\"\n"
70
+ text << "newCommandTimeout = #{new_command_timeout}\n"
71
71
  text << "udid = \"#{udid}\"\n" unless udid.nil?
72
72
  Logger.debug "appium.text == #{text}"
73
73
  text
@@ -1 +1 @@
1
- {"url_preference":"10.1.20.64","port_preference":"4567"}
1
+ {"url_preference":"10.1.20.161","port_preference":"4567"}
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.5.0
4
+ version: 0.6.0
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: 2016-02-26 00:00:00.000000000 Z
13
+ date: 2016-04-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -165,6 +165,7 @@ files:
165
165
  - ".cuesmash.yml"
166
166
  - ".gitignore"
167
167
  - ".travis.yml"
168
+ - CHANGELOG.md
168
169
  - Gemfile
169
170
  - Gemfile.lock
170
171
  - Guardfile