jericho 0.2.4 → 0.2.5

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
  SHA256:
3
- metadata.gz: c0a88382aeea581615b61dd83526f083e68ca46ecb0e71044269c784fce37add
4
- data.tar.gz: eb1b26bb20f62200c5ef5df45ceac1dcfeb285a65b978972b1c7f14c30904ae7
3
+ metadata.gz: 7af822f2a0a8db01c6a36f2aba120bcd5241af2c5db73b883d760235cf51b7d6
4
+ data.tar.gz: 0ef41c37820f86d81e80d41d8d5c143de506990ab1414716ecf20be15281e5f7
5
5
  SHA512:
6
- metadata.gz: e8c4226aba7cc82ece6d0fc5f3262d4c0a8201e3399fd29e507ef24e7f20fce13f8be5832a79449e692e9676339ee33db4f6256933ab53f488444bf95469aad7
7
- data.tar.gz: 6ccc664029ae2ab73411ea786d8e103605a0bfd5658bf19afb38507388755d6c952ebb1cc2809895cf17d4f10952eb9ca100619c9075cd696c86b04a0ffa3234
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 rder to use slack integration - you'll need to configure dotenv gem with your Slack credentials"}
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
 
@@ -1,3 +1,3 @@
1
1
  module Jericho
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
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 purifys for #{$driver.caps[:deviceName]}, #{$driver.caps[:platformName]} #{$driver.caps[:platformVersion]}:
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
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-10 00:00:00.000000000 Z
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 rder to use slack integration - you''ll need to configure dotenv gem with
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