jericho 0.2.4 → 0.2.5
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/jericho.gemspec +1 -1
- data/lib/jericho/version.rb +1 -1
- data/lib/jericho.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7af822f2a0a8db01c6a36f2aba120bcd5241af2c5db73b883d760235cf51b7d6
|
4
|
+
data.tar.gz: 0ef41c37820f86d81e80d41d8d5c143de506990ab1414716ecf20be15281e5f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec763af0481470ba6a83a3ffd40ca08880ee7a3f0d2b3908bf0a677bf1f53ffe91e843b108211f8a8753fcd290e72cb9c03daa5de9fb312ad3d468551f2bc8bf
|
7
|
+
data.tar.gz: 251ea1c2790cac4b023b92824a21455ab1c97ba521a093b96919fb8f167231b38af3bf66f6b5636faac3933e56e47084f6ba1e1d044fe0dd94920f1ccb5959f4
|
data/jericho.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["alexeyenko92@gmail.com"]
|
11
11
|
|
12
12
|
spec.summary = %q{"Additional gem for cucumber tests"}
|
13
|
-
spec.description = %q{"Tiny simple gem which cleans your cucumber JSON reports from redundant info and compares report from your last test run and report from previous test run. After it you'll receive a test run summary to desired slack channel. Please note that in
|
13
|
+
spec.description = %q{"Tiny simple gem which cleans your cucumber JSON reports from redundant info and compares report from your last test run and report from previous test run. After it you'll receive a test run summary to desired slack channel. Please note that in order to use slack integration - you'll need to configure dotenv gem with your Slack credentials"}
|
14
14
|
spec.homepage = "https://github.com/M1khah/jericho"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
data/lib/jericho/version.rb
CHANGED
data/lib/jericho.rb
CHANGED
@@ -43,7 +43,7 @@ module Jericho
|
|
43
43
|
client.chat_postMessage(
|
44
44
|
channel: '#autotests',
|
45
45
|
text:
|
46
|
-
"Test run
|
46
|
+
"Test run results for #{$driver.caps[:deviceName]}, #{$driver.caps[:platformName]} #{$driver.caps[:platformVersion]}:
|
47
47
|
Passed tests count: #{purify[:passed]},
|
48
48
|
Failed tests count: #{purify[:failed]},",
|
49
49
|
attachments: [
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jericho
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kirill
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-04-
|
11
|
+
date: 2019-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -83,7 +83,7 @@ dependencies:
|
|
83
83
|
description: '"Tiny simple gem which cleans your cucumber JSON reports from redundant
|
84
84
|
info and compares report from your last test run and report from previous test run.
|
85
85
|
After it you''ll receive a test run summary to desired slack channel. Please note
|
86
|
-
that in
|
86
|
+
that in order to use slack integration - you''ll need to configure dotenv gem with
|
87
87
|
your Slack credentials"'
|
88
88
|
email:
|
89
89
|
- alexeyenko92@gmail.com
|