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 +4 -4
- data/lib/flaky.rb +2 -2
- data/lib/flaky/log.rb +2 -2
- data/release_notes.md +12 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 144d71285cb56132d67177ff0c825f98e1fde159
|
|
4
|
+
data.tar.gz: 59b262d5f66bd5d57601de1c1c756a2dee440d2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a9d5ab7faf090b77da45d070029d3298d30aa05c61d37e900c123983ea9a8ab2e3020a3a0c301f6507e6dc3c6b36dc936e9b02ab396f75e894415e38dbf5885
|
|
7
|
+
data.tar.gz: e033e2722f59eefc7cc4c01a13b53658df33e6387a14f24690e0126f6bbf19c906f03cb848ffea871d58ff68b26e36f7e9945c1f428ef036bf304ae5b21cdf90
|
data/lib/flaky.rb
CHANGED
|
@@ -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
|
-
DATE = '2013-11-
|
|
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
|
data/lib/flaky/log.rb
CHANGED
|
@@ -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
|
# [90mPOST /wd/hub/session [36m303 [90m6877ms - 9[0m
|
|
60
60
|
|
|
61
61
|
scan = StringScanner.new log || File.read(file_path)
|
data/release_notes.md
CHANGED
|
@@ -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.
|
|
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-
|
|
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.
|
|
119
|
+
rubygems_version: 2.1.11
|
|
119
120
|
signing_key:
|
|
120
121
|
specification_version: 4
|
|
121
122
|
summary: Measure flaky Ruby Appium tests
|