botspec 0.4.11 → 0.4.12
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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +0 -1
- data/README.md +5 -3
- data/lib/botspec/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3dfaddcf6ec7129047b2e40c8e3325c67d66ab75
|
|
4
|
+
data.tar.gz: 01d4c0b5675c9f9b53cb6d07fee3839b0d544027
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 833b92388fc4058f126dccfbcd4344a8af6aeeb1bf0433fb6a64c525271fe1e099cfa08f0dcc7fc9ffeb92b39c1df1fda7b6ac66ce427f5472b6e6fdb729b956
|
|
7
|
+
data.tar.gz: 216f2a483e66d49d742cc56abd533de531f2f0da1ed93e395c1a768b95cb65266f341cec63ba8880a40554d2916d24a889eeb757fb47ce6fe989f8115b0c13c2
|
data/.circleci/config.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Botspec
|
|
2
2
|
|
|
3
|
+
[](https://circleci.com/gh/elliottmurray/botspec)
|
|
4
|
+
|
|
3
5
|
Making specs for your bot that can be run in your build pipeline.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
@@ -32,10 +34,10 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
32
34
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
33
35
|
|
|
34
36
|
## Running a command
|
|
35
|
-
To install run
|
|
37
|
+
To install run
|
|
36
38
|
```thor install lib/cli.thor --as botspec --force
|
|
37
39
|
```
|
|
38
|
-
Then you can run
|
|
40
|
+
Then you can run
|
|
39
41
|
|
|
40
42
|
```
|
|
41
43
|
thor cli:verify -f specs/simple_dialog.yaml
|
|
@@ -53,7 +55,7 @@ Should create a changelog record
|
|
|
53
55
|
## Docker
|
|
54
56
|
You can run the command with:
|
|
55
57
|
```
|
|
56
|
-
docker run -e AWS_REGION -e AWS_DEFAULT_PROFILE -v $HOME/.aws/credentials:/root/.aws/credentials:ro -v `pwd`/specs:/app/bot/specs -it elliottmurray/botspec <botname> <relative path to fixture>
|
|
58
|
+
docker run -e AWS_REGION -e AWS_DEFAULT_PROFILE -v $HOME/.aws/credentials:/root/.aws/credentials:ro -v `pwd`/specs:/app/bot/specs -it elliottmurray/botspec <botname> <relative path to fixture>
|
|
57
59
|
```
|
|
58
60
|
|
|
59
61
|
Assuming you are in your project root directory and your specs are in the corresponding specs folder
|
data/lib/botspec/version.rb
CHANGED