deploio-cli 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4464fa0c5bfb5ca034fc5b7936d2b3d856224068fb984bea2bf03018b1e33841
4
- data.tar.gz: 8b9a0dc13c1262ebc81b8bee5e4aac9d9d47e70fb2850a6259ded636a40ea3af
3
+ metadata.gz: cfbf5567b54c09796623b3347320fa36f2999d18269bf4c3e9d36cbcdd15ee59
4
+ data.tar.gz: 81019ea594eded66c41bea3d5d9a696858f7f8f23023d160782e42e6b4028a01
5
5
  SHA512:
6
- metadata.gz: 61678961554d647509a198b88510862d178774814e2fe094aa42e891ed655f079a8216b9663addd75da1861a2d24d7d9c0419ec6abb50bed139cdbab1176dec3
7
- data.tar.gz: 9fcedee868c9a4621b4e0441618267074dc6963cb7ff0f8e7d00565b9f2e4f01c8f926e38e1d8ec5029c4775f975cd687e40b13f7b6e35141c2c20d814841d18
6
+ metadata.gz: 89924672422ab905ca8143a1a4ec51302057ffdcf58c26be1272dca11572a02a6a9f54ab48af8428171587ad9eceeddcc6af933dc40b4f3d6ab004a09b2da4e8
7
+ data.tar.gz: 977f56ebf1bca8df8f09a2759f0c67228b92f44243eacd4573035a5b34fb4e16abc3fcb90b2d18dee1576b744b191eedad23e3dcd58aecd73c9977ac90bdf71a
data/deploio-cli.gemspec CHANGED
@@ -18,6 +18,13 @@ Gem::Specification.new do |spec|
18
18
  spec.metadata["source_code_uri"] = spec.homepage
19
19
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
20
20
 
21
+ spec.post_install_message = <<~MSG
22
+ To enable shell autocompletion for deploio, add this to your ~/.zshrc:
23
+
24
+ eval "$(deploio completion)"
25
+
26
+ MSG
27
+
21
28
  spec.files = Dir.chdir(__dir__) do
22
29
  `git ls-files -z`.split("\x0").reject do |f|
23
30
  (File.expand_path(f) == __FILE__) ||
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Deploio
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deploio-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Renuo AG
@@ -72,6 +72,11 @@ metadata:
72
72
  homepage_uri: https://github.com/renuo/deploio-cli
73
73
  source_code_uri: https://github.com/renuo/deploio-cli
74
74
  changelog_uri: https://github.com/renuo/deploio-cli/blob/main/CHANGELOG.md
75
+ post_install_message: |+
76
+ To enable shell autocompletion for deploio, add this to your ~/.zshrc:
77
+
78
+ eval "$(deploio completion)"
79
+
75
80
  rdoc_options: []
76
81
  require_paths:
77
82
  - lib
@@ -90,3 +95,4 @@ rubygems_version: 4.0.3
90
95
  specification_version: 4
91
96
  summary: CLI for Deploio
92
97
  test_files: []
98
+ ...