cucumber-calliope_importer 0.1.8 → 0.1.9

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
  SHA1:
3
- metadata.gz: 0d078afb4df211fc65166e8d015cdb842f6e30ea
4
- data.tar.gz: 9bc5ea6b847b478704dbae275bdebf22920eb14b
3
+ metadata.gz: 2fdb67ffdfb78b8f9c63a98577793257caeb8cc1
4
+ data.tar.gz: aa756fbae1b45b539255c56671fb25f7c0705db6
5
5
  SHA512:
6
- metadata.gz: 0718f11f44b717162f558d2eddc324865b1dd7e447bd7c4ab689bb0dd46156b90ee5008fa593dc9b5baef52ba503b47268db569b9165cae1f102eae6a4268a55
7
- data.tar.gz: 1250176c82015dc41da796d190f2be2fe00658e4337d8f0f2598fee8a015410e9a26dda20c778f5af0589580b035a6d0b181dc285feaf8662000552cb92bd964
6
+ metadata.gz: f1170b2e18c9ba0216e3ea8ce77217962060c9baaa3a83892397ab9d70fbdc30f174ef565ddc76a89ce68432f51def2a0b03458250c557a055393211dc8c2460
7
+ data.tar.gz: b46079f61122ad06d4e90f60e7b78001d47ae7efa7e7f671b53c0567f66bc56710824ab8498df17a0858d8c10e7cec14828f47d70a637714112066b008735d21
data/README.md CHANGED
@@ -20,11 +20,17 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
+ In order to use the calliope_import formatter we first have to require it in our env.rb file.
24
+
25
+ require 'cucumber/calliope_import'
26
+
23
27
  CalliopeImport uses environment variables of a test run to make an API call with the test results.
24
28
  You can set those variables and call the formatter like this:
25
29
 
26
30
  $ cucumber API_KEY='API Key Here' PROFILE_ID='Profile_ID Here' -f calliope_import
27
31
 
32
+ The API url defaults to 'https://app.calliope.pro' this can be changed with the environment variable API_URL='API Url Here'
33
+
28
34
  ## Development
29
35
 
30
36
  After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -19,7 +19,7 @@ module Cucumber
19
19
  if ENV['API_URL']
20
20
  @calliope_config['url'] = ENV['API_URL']
21
21
  else
22
- @calliope_config['url'] = 'https://app.calliope/pro'
22
+ @calliope_config['url'] = 'https://app.calliope.pro'
23
23
  end
24
24
  check_profile_permission
25
25
  end
@@ -1,5 +1,5 @@
1
1
  module Cucumber
2
2
  module CalliopeImporter
3
- VERSION = "0.1.8"
3
+ VERSION = "0.1.9"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber-calliope_importer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maurice Wijnia
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-04 00:00:00.000000000 Z
11
+ date: 2017-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler