flaky 0.0.13 → 0.0.14

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: 1c518578fad2332c3c4d04a73e4e75348b2e6298
4
- data.tar.gz: dac38464aa7e40e539c1fbacd9816dc7671e83ae
3
+ metadata.gz: 144d71285cb56132d67177ff0c825f98e1fde159
4
+ data.tar.gz: 59b262d5f66bd5d57601de1c1c756a2dee440d2f
5
5
  SHA512:
6
- metadata.gz: 1600f893244cc2ee6f6e928567c5fbd3183461a765d9d4b813441a9986d9d5d1db74c4d16b53fb649cf3291c2d3113b7e4d974423c6378d6c5f8283034346da5
7
- data.tar.gz: ccca18f08d340ceaf32f1f0400f16482eab2ab16bfc22445d988b7c0b3a3ef6342bcda40e88a998ba5b8ecba3fa485933324017994e9cfd079cdcc9926a70002
6
+ metadata.gz: 6a9d5ab7faf090b77da45d070029d3298d30aa05c61d37e900c123983ea9a8ab2e3020a3a0c301f6507e6dc3c6b36dc936e9b02ab396f75e894415e38dbf5885
7
+ data.tar.gz: e033e2722f59eefc7cc4c01a13b53658df33e6387a14f24690e0126f6bbf19c906f03cb848ffea871d58ff68b26e36f7e9945c1f428ef036bf304ae5b21cdf90
@@ -9,8 +9,8 @@ require 'posix/spawn' # http://rubygems.org/gems/posix-spawn
9
9
  require 'digest/md5'
10
10
 
11
11
  module Flaky
12
- VERSION = '0.0.13' unless defined? ::Flaky::VERSION
13
- DATE = '2013-11-12' unless defined? ::Flaky::DATE
12
+ VERSION = '0.0.14' unless defined? ::Flaky::VERSION
13
+ DATE = '2013-11-22' unless defined? ::Flaky::DATE
14
14
 
15
15
  # https://github.com/appium/ruby_lib/blob/0e203d76610abd519ba9d2fe9c14b50c94df5bbd/lib/appium_lib.rb#L24
16
16
  def self.add_to_path file, path=false
@@ -53,9 +53,9 @@ div.grey { color: #666666; }
53
53
  # Pry & Awesome Print use the ruby objects to insert term colors.
54
54
  # this can't be done with the raw text output.
55
55
 
56
+ # escape_html will error if called when log is nil
56
57
  # must escape for rendering HTML in the browser
57
- log = EscapeUtils.escape_html log unless file_path
58
-
58
+ log = EscapeUtils.escape_html log || '' unless file_path
59
59
  # POST /wd/hub/session 303 6877ms - 9
60
60
 
61
61
  scan = StringScanner.new log || File.read(file_path)
@@ -1,3 +1,15 @@
1
+ #### v0.0.13 2013-11-12
2
+
3
+ - [33fdc42](https://github.com/appium/flaky/commit/33fdc424ccf7534c13897a7c5bc1d6e7991bfa4e) Release 0.0.13
4
+ - [201ad79](https://github.com/appium/flaky/commit/201ad790dfde1abfe7984b74812346c0d058d3e0) Buffer the appium server log
5
+ - [d86560b](https://github.com/appium/flaky/commit/d86560b00a8c718c92c94fea10b43b11663720a2) Add note on checking for process existance
6
+ - [5f90fb2](https://github.com/appium/flaky/commit/5f90fb230dd36e85eb93fa0420689ab8a0ccffc8) Stop tail before starting a new one
7
+ - [3d9c392](https://github.com/appium/flaky/commit/3d9c392e8fb231f48513f8883c22d36aa66857db) Update to new escape_utils
8
+ - [771a57b](https://github.com/appium/flaky/commit/771a57b9ca2dce6f38bfcb5c3df31b31fa24cd90) Update readme.md
9
+ - [e1bcde7](https://github.com/appium/flaky/commit/e1bcde7048a40586d618e6195cbfea98b636a518) Fix iOS app removal to work on all iPhone Simulators
10
+ - [66d8f55](https://github.com/appium/flaky/commit/66d8f5570622a85200587689ed699e603dd106bb) Update readme.md
11
+
12
+
1
13
  #### v0.0.12 2013-11-04
2
14
 
3
15
  - [d10c66d](https://github.com/appium/flaky/commit/d10c66dc5a882d54a64fe70709968d856a6a932e) Release 0.0.12
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flaky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-12 00:00:00.000000000 Z
11
+ date: 2013-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chronic_duration
@@ -74,6 +74,7 @@ executables:
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
+ - ".gitignore"
77
78
  - LICENSE-2.0.txt
78
79
  - Rakefile
79
80
  - bin/flake
@@ -115,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
116
  version: '0'
116
117
  requirements: []
117
118
  rubyforge_project:
118
- rubygems_version: 2.1.9
119
+ rubygems_version: 2.1.11
119
120
  signing_key:
120
121
  specification_version: 4
121
122
  summary: Measure flaky Ruby Appium tests