rainforest-cli 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -3
- data/lib/rainforest/cli.rb +6 -0
- data/lib/rainforest/cli/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -7,18 +7,19 @@ A command line interface to interact with RainforestQA.
|
|
7
7
|
$ gem install rainforest-cli
|
8
8
|
|
9
9
|
## Usage
|
10
|
+
To use the cli client, you'll need your API token from a test settings page from inside [Rainforest](https://app.rainforestqa.com/).
|
10
11
|
|
11
12
|
Run all of your tests
|
12
13
|
|
13
|
-
rainforest run all
|
14
|
+
rainforest run all --token YOUR_TOKEN_HERE
|
14
15
|
|
15
16
|
Run and report
|
16
17
|
|
17
|
-
rainforest run --fg all
|
18
|
+
rainforest run --fg all --token YOUR_TOKEN_HERE
|
18
19
|
|
19
20
|
Run all tests with tag 'run-me' and abort previous in-progress runs.
|
20
21
|
|
21
|
-
rainforest run --
|
22
|
+
rainforest run --tag run-me --conflict abort --token YOUR_TOKEN_HERE
|
22
23
|
|
23
24
|
## Contributing
|
24
25
|
|
data/lib/rainforest/cli.rb
CHANGED
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: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-09-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: httparty
|