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 +4 -4
- data/deploio-cli.gemspec +7 -0
- data/lib/deploio/version.rb +1 -1
- metadata +7 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cfbf5567b54c09796623b3347320fa36f2999d18269bf4c3e9d36cbcdd15ee59
|
|
4
|
+
data.tar.gz: 81019ea594eded66c41bea3d5d9a696858f7f8f23023d160782e42e6b4028a01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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__) ||
|
data/lib/deploio/version.rb
CHANGED
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.
|
|
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
|
+
...
|