botspec 0.4.11 → 0.4.12

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: e8b39f8ad8185c80b4e315dfc6ebe1c92285cab8
4
- data.tar.gz: ed21c8af44b47cc1b87e1141c8e870539019a867
3
+ metadata.gz: 3dfaddcf6ec7129047b2e40c8e3325c67d66ab75
4
+ data.tar.gz: 01d4c0b5675c9f9b53cb6d07fee3839b0d544027
5
5
  SHA512:
6
- metadata.gz: 58b154ef423ebd45517a03e96af8a64060e19e200b75d07ceab125b28ced6ba1f1cd3b924f0214dc97858a50b483322da295c5e84042fbb541184327d44c4d1a
7
- data.tar.gz: 2602b5c62b2ee449f6b724a4fcc4edd038101e2f558c541b6bc9be0ab30b6fc215edfb5d6cd86563f5d85befed80b62a3566d8a7f3b51a39e71997704bc7a2f1
6
+ metadata.gz: 833b92388fc4058f126dccfbcd4344a8af6aeeb1bf0433fb6a64c525271fe1e099cfa08f0dcc7fc9ffeb92b39c1df1fda7b6ac66ce427f5472b6e6fdb729b956
7
+ data.tar.gz: 216f2a483e66d49d742cc56abd533de531f2f0da1ed93e395c1a768b95cb65266f341cec63ba8880a40554d2916d24a889eeb757fb47ce6fe989f8115b0c13c2
@@ -69,5 +69,4 @@ workflows:
69
69
  branches:
70
70
  only:
71
71
  - master
72
- - publish_gem
73
72
 
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Botspec
2
2
 
3
+ [![CircleCI](https://circleci.com/gh/elliottmurray/botspec.svg?style=svg)](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
@@ -1,3 +1,3 @@
1
1
  module Botspec
2
- VERSION = "0.4.11"
2
+ VERSION = "0.4.12"
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.11
4
+ version: 0.4.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliott Murray