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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cfd9726849a396c41f007f2fab517a0df8785a803abe7e1a0f9d612ad24b91bb
4
- data.tar.gz: 7eb69cf6a56f0b754c83007ba047e916ce42cb093358b8b38284f5305ef04a64
3
+ metadata.gz: 471a84a0013e6c3c02501ec32d3b45f09bf37d806bc94daeb5ef986d5ad11b33
4
+ data.tar.gz: ff2c2b197c9473bf78468f0ef563968e1a34a4e191e10fffccba639e51c6d564
5
5
  SHA512:
6
- metadata.gz: 79883291888bd50b34a5965fb70a6a1fb8b2dcfbb5f9b2d837253f7ee2484a09ba9f8087d783bfac4e0d9abbe3db86f9f2f5519699ad532a6d5e8b669944f103
7
- data.tar.gz: 4db6f9d35a10d97de50b8f9e61c4dea72e1d3f8ff038bd915d34357d8b7bef4fd91cc17bb14220fa366f14b216fffd873bf7a3b810d5c8fa051a4873b1b5ba7a
6
+ metadata.gz: 9426206069ea3f3a3d65f5ef2eb7ff95e97d1f89329d40f6e64f235590eaef80c713cf1ea1ba3700ea7ac4e0a9ed96a66a035109614d792734ae5693988ab819
7
+ data.tar.gz: 52a1daaeaf66b8a84acffbd1b2f9b720fde0ca3275f8f4c0fd3dbad46ca7aa56e9540d5642415bb053129f8b4d548adaf959c1c033dafd89d4bf664e766d3bf5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.8.0 - 05/05/2020
2
+ * [PATCH] Handles Ctrl-C / SIGINT in CLI
3
+
1
4
  ## 0.7.0 - 29/04/2020
2
5
  * [FEATURE Built In Git Hooks]
3
6
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- verto (0.7.0)
4
+ verto (0.8.0)
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.7.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.7.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.7.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.7.0'
88
+ verto_version '0.8.0'
89
89
 
90
90
  config {
91
91
  # version.prefix = 'v' # Adds a version_prefix
data/Vertofile CHANGED
@@ -1,4 +1,4 @@
1
- verto_version '0.6.1'
1
+ verto_version '0.7.0'
2
2
 
3
3
  config {
4
4
  version.prefix = 'v' # Adds a version_prefix
data/exe/verto CHANGED
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
+ Signal.trap("INT") { exit 2 }
2
3
 
3
4
  require_relative '../lib/verto'
4
5
 
5
6
  vertofile_path = ENV['VERTOFILE_PATH'] || Pathname.new(Dir.pwd).join('Vertofile').to_s
6
-
7
7
  begin
8
8
  Verto::DSL.load_file(vertofile_path) if File.exists?(vertofile_path)
9
9
 
@@ -155,7 +155,7 @@ module Verto
155
155
  end
156
156
 
157
157
  def deprecate(current, use:)
158
- warn "[DEPRECATED] `#{current}` is deprecated and wil be removed in a future release, use `#{use}` instead"
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
@@ -1,4 +1,4 @@
1
- verto_version '0.7.0'
1
+ verto_version '0.8.0'
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.7.0"
2
+ VERSION = "0.8.0"
3
3
  end
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.7.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-04-29 00:00:00.000000000 Z
11
+ date: 2020-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor