cukehub 0.8.7 → 0.8.8

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/cukehub.rb +34 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 57eeb1a1c036c07638e8d8bcfdb25173569bb478
4
- data.tar.gz: 3c69a574845150113edb036bd3964ab490f25755
3
+ metadata.gz: 169554bff5a746bf0723b14a9caba7153c7170e0
4
+ data.tar.gz: 9925cd696ac7eac81c27c047fc4dba683e6dd4f4
5
5
  SHA512:
6
- metadata.gz: 91c5b1f7383afd68b454572025eba3b34d25ee57fb143da28280c1d2bed75478f847b22af13d02d22b399bec9032313d674daab459786c6223eae98ac3f54de6
7
- data.tar.gz: f96ca053a1cb0a09b7cbf89e6c7009f5c56721fb9d78a899af128ae4666eeb81b9ca80c09c258b65c96b15d764c34a4f89df862736f027766328d95a18ace470
6
+ metadata.gz: 72900e94345694d3626386a58deba9a7ca87a6b97ee5e87161392ef2af7ee7f1257e7160360daab414d6a9cfdc1895d4201cb07383555e71ae1900c730299ebc
7
+ data.tar.gz: c2d6a3471b8d9c94cc1253ea35c9d2f196461de86a7802f96407b1e02587f5418fe1156b3e7fb2c79fa1f1382b5a1f96493c9370a31502651afc56dc977c1b43
data/lib/cukehub.rb ADDED
@@ -0,0 +1,34 @@
1
+ require 'httparty'
2
+ require 'os'
3
+
4
+ if OS.mac? then
5
+ os = "OSX"
6
+ elsif OS.linux?
7
+ os = "Linux"
8
+ elsif OS.doze?
9
+ os = "Win"
10
+ end
11
+
12
+ Before do
13
+ @start = Time.now
14
+ end
15
+
16
+ After do |scenario|
17
+ IO.popen("git symbolic-ref --short HEAD") {|pipe| puts @git_branch = pipe.read }
18
+ params = {
19
+ token: @cukehub_token,
20
+ name: scenario.name,
21
+ location: scenario.location,
22
+ tag: scenario.source_tag_names,
23
+ status: scenario.status.upcase,
24
+ machine: Socket.gethostname,
25
+ os: os,
26
+ runtime: (Time.now - @start),
27
+ domain: @domain,
28
+ branch: @git_branch.chomp
29
+ }
30
+ params[:browser] = @browser.browser.upcase unless @browser.nil?
31
+ params[:exception]=scenario.exception.message unless scenario.passed?
32
+
33
+ HTTParty.post("http://cukehub.com/dropin", body: params)
34
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cukehub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.7
4
+ version: 0.8.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rich Downie
@@ -58,6 +58,7 @@ executables: []
58
58
  extensions: []
59
59
  extra_rdoc_files: []
60
60
  files:
61
+ - lib/cukehub.rb
61
62
  - lib/tasks/cukehub.rake
62
63
  homepage: http://cukehub.com
63
64
  licenses: