botspec 0.4.18 → 0.4.19

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85e0ea2d3a144338010391842e7348f71b6087eb
4
- data.tar.gz: 25df82d943b4e10f34ac95155846c8e36caefe6c
3
+ metadata.gz: 7aecd33a3a9fb0a304b5afd0e1231b218652bc4f
4
+ data.tar.gz: cb2e2f2642a5582a54bdf526eb1138412a04dd81
5
5
  SHA512:
6
- metadata.gz: a2d7c15d57cbb9264bfd6547b84a58d676c7a287fc32884fd2adcb87135fc1fe7afc01f76e51b555d901c950444625bbf822883572485bcc7917aa2b266eb33e
7
- data.tar.gz: af4e24ee64c64ea7c7a5ea4cdb029679d97657d7f8a5ced28e142849b360455dcbbc1e68789b574b9af9c82ab7da30a5046594e9769e47aea5d9299311223b07
6
+ metadata.gz: cfa5a24136329743f91307f9cec4dc8959748a2feefc91f690abc814c48facb30b39d776c12f711cdc008981c9ed46e57117a173bb8f6629a0f50a9f1ac19e36
7
+ data.tar.gz: 21a35b6365fa62adb5d8422e3301a6cf90a81ba433eb6ed34fb76b8c5007b7aff5609bff4d0fecbeebe1de0392cf119ad7fbc4b190707582e5845b48ebc8cbe6
data/Dockerfile CHANGED
@@ -21,5 +21,6 @@ RUN gem install bundler -v 2.0.2
21
21
  RUN bundle install --verbose
22
22
  RUN bundle exec thor install lib/cli.rb --as botspec --force
23
23
 
24
- ENTRYPOINT ["sh"]
24
+ CMD ['verify', '-f', 'specs/*', '-n', 'UNNAMED bot'']
25
+ ENTRYPOINT ["bundle", "exec", "botspec"]
25
26
 
data/README.md CHANGED
@@ -60,7 +60,7 @@ Should create a changelog record
60
60
  ## Docker
61
61
  You can run the command with:
62
62
  ```
63
- docker run -e AWS_REGION -e AWS_PROFILE -v $HOME/.aws/credentials:/root/.aws/credentials:ro -v `pwd`/specs:/app/bot/specs -it elliottmurray/botspec ./botspec.sh <botname> <relative path to fixture>
63
+ docker run -e AWS_REGION -e AWS_PROFILE -v $HOME/.aws/credentials:/root/.aws/credentials:ro -v `pwd`/specs:/app/bot/specs -it elliottmurray/botspec botspec verify -n <botname> -f <relative path to fixture>
64
64
  ```
65
65
 
66
66
  Assuming you are in your project root directory and your specs are in the corresponding specs folder
@@ -1,3 +1,3 @@
1
1
  module Botspec
2
- VERSION = "0.4.18"
2
+ VERSION = "0.4.19"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: botspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.18
4
+ version: 0.4.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliott Murray