verto 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/Vertofile +1 -1
- data/exe/verto +1 -1
- data/lib/verto/dsl/syntax.rb +1 -1
- data/lib/verto/utils/templates/Vertofile +1 -1
- data/lib/verto/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 471a84a0013e6c3c02501ec32d3b45f09bf37d806bc94daeb5ef986d5ad11b33
|
4
|
+
data.tar.gz: ff2c2b197c9473bf78468f0ef563968e1a34a4e191e10fffccba639e51c6d564
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9426206069ea3f3a3d65f5ef2eb7ff95e97d1f89329d40f6e64f235590eaef80c713cf1ea1ba3700ea7ac4e0a9ed96a66a035109614d792734ae5693988ab819
|
7
|
+
data.tar.gz: 52a1daaeaf66b8a84acffbd1b2f9b720fde0ca3275f8f4c0fd3dbad46ca7aa56e9540d5642415bb053129f8b4d548adaf959c1c033dafd89d4bf664e766d3bf5
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -32,20 +32,20 @@ You don't need to install verto in your machine, you can run verto via the docke
|
|
32
32
|
To use verto in the same way that you use any other cli, you can set an alias in your `.bashrc`, `.zshrc`, etc:
|
33
33
|
|
34
34
|
```shell
|
35
|
-
alias verto='docker run -v $(pwd):/usr/src/project -it catks/verto:0.
|
35
|
+
alias verto='docker run -v $(pwd):/usr/src/project -it catks/verto:0.8.0'
|
36
36
|
```
|
37
37
|
|
38
38
|
If you want you can share your git configuration and known_hosts with:
|
39
39
|
|
40
40
|
```shell
|
41
|
-
alias verto='docker run -v ~/.gitconfig:/etc/gitconfig -v $(pwd):/usr/src/project -v $HOME/.ssh/known_hosts:/root/.ssh/known_hosts -it catks/verto:0.
|
41
|
+
alias verto='docker run -v ~/.gitconfig:/etc/gitconfig -v $(pwd):/usr/src/project -v $HOME/.ssh/known_hosts:/root/.ssh/known_hosts -it catks/verto:0.8.0'
|
42
42
|
|
43
43
|
```
|
44
44
|
|
45
45
|
You can also use your ssh keys, know_hosts and git config with verto container (for git push):
|
46
46
|
|
47
47
|
```shell
|
48
|
-
alias verto='docker run -v ~/.gitconfig:/etc/gitconfig -v $(pwd):/usr/src/project -v $HOME/.ssh/known_hosts:/root/.ssh/known_hosts -v $HOME/.ssh/id_rsa:/root/.ssh/id_rsa -e SSH_PRIVATE_KEY=/root/.ssh/id_rsa -it catks/verto:0.
|
48
|
+
alias verto='docker run -v ~/.gitconfig:/etc/gitconfig -v $(pwd):/usr/src/project -v $HOME/.ssh/known_hosts:/root/.ssh/known_hosts -v $HOME/.ssh/id_rsa:/root/.ssh/id_rsa -e SSH_PRIVATE_KEY=/root/.ssh/id_rsa -it catks/verto:0.8.0'
|
49
49
|
|
50
50
|
```
|
51
51
|
|
@@ -85,7 +85,7 @@ You can create a new Vertofile with `verto init` or following the next example:
|
|
85
85
|
```ruby
|
86
86
|
# Vertofile
|
87
87
|
|
88
|
-
verto_version '0.
|
88
|
+
verto_version '0.8.0'
|
89
89
|
|
90
90
|
config {
|
91
91
|
# version.prefix = 'v' # Adds a version_prefix
|
data/Vertofile
CHANGED
data/exe/verto
CHANGED
data/lib/verto/dsl/syntax.rb
CHANGED
@@ -155,7 +155,7 @@ module Verto
|
|
155
155
|
end
|
156
156
|
|
157
157
|
def deprecate(current, use:)
|
158
|
-
warn "[DEPRECATED] `#{current}` is deprecated and
|
158
|
+
warn "[DEPRECATED] `#{current}` is deprecated and will be removed in a future release, use `#{use}` instead"
|
159
159
|
end
|
160
160
|
end
|
161
161
|
end
|
data/lib/verto/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: verto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carlos Atkinson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|