rainforest-cli 1.12.1 → 1.12.2

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: 846b92985179bad132fce666ba44a2cf700acb10
4
- data.tar.gz: 1565a3189a175799df17c4146cec815939f7bb13
3
+ metadata.gz: 1f59142b19a1c8a1acead8496c363abac25f1e26
4
+ data.tar.gz: b67f1ccf9a7fc3dbc52762488b1e159048696643
5
5
  SHA512:
6
- metadata.gz: 327eb266af0cc546b77aba045e965258bdf5ed022152d2713349c66eb18a3727e1ed6c8b47d3f710139d0fac6e2c0ca1f54141c6d53bc0f56550a65b3e57d4f1
7
- data.tar.gz: d3a6f4f8806d4ef16ae925083fd81887ede699d51d34ff30841a4af42479369dfba173d89df10adab14f21a2b5260c9fbff2936bbd83f837ad99a48aeb8220e6
6
+ metadata.gz: 38ad9bb4c69e36ffa54e3e31b597ae3c47adda976579248d504df2781a2c3663464b2d829946d75cc7b394586dfe60df985a668e5b3ccc9e66a8735444def5a7
7
+ data.tar.gz: b68ddbb6e9ed0ac1e38a1bb954bed905213ff0835e22fca939e92cdca2b23632bc5f453886129eb5667d40a3d771653dbebb3dfd97524f06819bf079f5df56d5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Rainforest CLI Changelog
2
2
 
3
+ ## 1.12.2 - 23rd February 2017
4
+ - Default `start_uri` attribute to "/" if omitted from RFML test.
5
+ (ec6049407ec635b7f7bc4f8da516ccddad2b78b3, @epaulet)
6
+
3
7
  ## 1.12.1 - 7th February 2017
4
8
  - Check columns returned from API before uploading rows when creating generators.
5
9
  (458fdf5bf3ba28588dfb48d1253192ba477ac7ae, @epaulet)
data/README.md CHANGED
@@ -246,7 +246,7 @@ Run tests in specified folder.
246
246
  <pre>--folder <b>ID</b></pre>
247
247
 
248
248
  ###Environment-ID
249
- run your tests using this environment. Otherwise it will use your default environment
249
+ Run your tests using this environment. Otherwise it will use your default environment
250
250
  <pre>--environment-id <b>ID</b></pre>
251
251
 
252
252
  ###Crowd
@@ -265,19 +265,19 @@ Wait for an existing run to finish instead of starting a new one, and exit with
265
265
  <pre>--wait <b>RUN_ID</b></pre>
266
266
 
267
267
  ###Fail-fast
268
- fail the build as soon as the first failed result comes in. If you don't pass this it will wait until 100% of the run is done. Use with --fg.
268
+ Fail the build (by exiting with a status of zero) as soon as a test is confirmed failed. If you don't pass this ``rainforest`` will wait until 100% of the run is complete before failing your build. Note, this _only_ fails your build - this does not abort your rainforest run. Use with --fg.
269
269
  <pre>--fail-fast</pre>
270
- ###Custom URL
271
270
 
272
- use a custom url for this run. Example use case: an ad-hoc QA environment with Fourchette. You will need to specify a site_id too for this to work. Note that we will be creating a new environment for this particular run.
271
+ ###Custom URL
272
+ Use a custom url for this run. Example use case: an ad-hoc QA environment with Fourchette. You will need to specify a site_id too for this to work. Note that we will be creating a new environment for this particular run.
273
273
  <pre>--custom-url</pre>
274
274
 
275
275
  ###Git-trigger
276
- only trigger a run when the last commit (for a git repo in the current working directory) has contains @rainforest and a list of one or more tags. E.g. "Fix checkout process. @rainforest #checkout" would trigger a run for everything tagged checkout. This over-rides --tag and any tests specified. If no @rainforest is detected it will exit 0.
276
+ Only trigger a run when the last commit (for a git repo in the current working directory) has contains @rainforest and a list of one or more tags. E.g. "Fix checkout process. @rainforest #checkout" would trigger a run for everything tagged checkout. This over-rides --tag and any tests specified. If no @rainforest is detected it will exit 0.
277
277
  <pre>--git-trigger</pre>
278
278
 
279
279
  ###Description "CI automatic run"
280
- add an arbitrary description for the run.
280
+ Add an arbitrary description for the run.
281
281
  <pre>--description "CI automatic run"</pre>
282
282
 
283
283
  ###Embed-tests
@@ -19,6 +19,7 @@ module RainforestCli::TestParser
19
19
 
20
20
  @test = Test.new
21
21
  @test.file_name = File.expand_path(file_name)
22
+ @test.start_uri = '/'
22
23
  @test.description = ''
23
24
  @test.steps = []
24
25
  @test.errors = {}
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module RainforestCli
3
- VERSION = '1.12.1'
3
+ VERSION = '1.12.2'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rainforest-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.1
4
+ version: 1.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Russell Smith
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-02-09 00:00:00.000000000 Z
12
+ date: 2017-03-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty