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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 768852b8be876572bb72068a3865eaeee672d20baa976923758c9634b901a52d
4
- data.tar.gz: 98339f920377dd25299a8240d5e10da2f5161fd749f5753d593d1878de4e6e9c
3
+ metadata.gz: 3f133ca9770197a96c51bf790c7ad1370b16927a6a651ef8392b04bfb58d894d
4
+ data.tar.gz: 7b30716c515ebf40d095bf7e0a684de630c10fdba522a4f9273722d2bc748803
5
5
  SHA512:
6
- metadata.gz: 8532433e33edc4061b286d8ab409c70d668d231eed44a20b245243f94de4cdf794754c39b588212c71a10ec8522aa02f5b76ee21b6f636f2e283c2219989da66
7
- data.tar.gz: c04e86927b7edcece876e739fc149743e99f972d86bbab755f86b0c006abf90caa255be1f35bdd6366e0e0387b6c9dbe80d97475394c7263c979cd86d89492d8
6
+ metadata.gz: a9c790091841b1f6825ac130f9f3b0affc84acd8856fa385a76a06603d9fdaa8768b4a8a72833146a2b44033cfafdaf724d9c73031ba4299b252e42cd415a7f0
7
+ data.tar.gz: 7ad45eacb814408b1a99064ca3e6419d818969b607c591f50d5f89ff3ab2274f39b4513458b513536f41e533daca77ba73266b9462a14ac958b351b644a5e948
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.6.1 - 15/04/2020
2
+ * [FIX] Fix Vertofile to add Gemfile.lock before release
3
+
1
4
  ## 0.6.0 - 14/04/2020
2
5
  * [FEATURE] Adds Version Prefix
3
6
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- verto (0.5.0)
4
+ verto (0.6.1)
5
5
  dry-auto_inject (~> 0.7)
6
6
  dry-configurable (~> 0.8)
7
7
  dry-container (~> 0.7)
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.0'
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.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.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.0'
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.0'
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.0'
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')
@@ -1,4 +1,4 @@
1
- verto_version '0.6.0'
1
+ verto_version '0.6.1'
2
2
 
3
3
  config {
4
4
  # version.prefix = 'v' # Adds a version_prefix
data/lib/verto/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Verto
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: verto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Atkinson