verto 0.6.0 → 0.6.1
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 +5 -5
- data/Vertofile +2 -0
- data/lib/verto/utils/templates/Vertofile +1 -1
- data/lib/verto/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f133ca9770197a96c51bf790c7ad1370b16927a6a651ef8392b04bfb58d894d
|
4
|
+
data.tar.gz: 7b30716c515ebf40d095bf7e0a684de630c10fdba522a4f9273722d2bc748803
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9c790091841b1f6825ac130f9f3b0affc84acd8856fa385a76a06603d9fdaa8768b4a8a72833146a2b44033cfafdaf724d9c73031ba4299b252e42cd415a7f0
|
7
|
+
data.tar.gz: 7ad45eacb814408b1a99064ca3e6419d818969b607c591f50d5f89ff3ab2274f39b4513458b513536f41e533daca77ba73266b9462a14ac958b351b644a5e948
|
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.6.
|
35
|
+
alias verto='docker run -v $(pwd):/usr/src/project -it catks/verto:0.6.1'
|
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.6.
|
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.6.1'
|
42
42
|
|
43
43
|
```
|
44
44
|
|
45
45
|
You can also use your ssh keys with verto container (for git push):
|
46
46
|
|
47
47
|
```shell
|
48
|
-
alias verto='docker run -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.6.
|
48
|
+
alias verto='docker run -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.6.1'
|
49
49
|
|
50
50
|
```
|
51
51
|
|
@@ -53,7 +53,7 @@ Or share the git config, known_hosts and ssh_keys:
|
|
53
53
|
|
54
54
|
|
55
55
|
```shell
|
56
|
-
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.6.
|
56
|
+
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.6.1'
|
57
57
|
|
58
58
|
```
|
59
59
|
|
@@ -93,7 +93,7 @@ You can create a new Vertofile with `verto init` or following the next example:
|
|
93
93
|
```ruby
|
94
94
|
# Vertofile
|
95
95
|
|
96
|
-
verto_version '0.6.
|
96
|
+
verto_version '0.6.1'
|
97
97
|
|
98
98
|
config {
|
99
99
|
# version.prefix = 'v' # Adds a version_prefix
|
data/Vertofile
CHANGED
@@ -38,6 +38,7 @@ context(branch('master')) {
|
|
38
38
|
file('lib/verto/utils/templates/Vertofile').replace(latest_version.to_s, new_version.to_s)
|
39
39
|
git!('add lib/verto/utils/templates/Vertofile')
|
40
40
|
|
41
|
+
sh!('bundle install')
|
41
42
|
sh!('rake install')
|
42
43
|
git!('add Gemfile.lock')
|
43
44
|
|
@@ -45,6 +46,7 @@ context(branch('master')) {
|
|
45
46
|
}
|
46
47
|
|
47
48
|
after_command('tag_up') {
|
49
|
+
exit
|
48
50
|
git!('push --tags')
|
49
51
|
git!('push origin master')
|
50
52
|
sh!('rake release')
|
data/lib/verto/version.rb
CHANGED