kdeploy 0.1.0 → 0.2.0

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.
data/Rakefile CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'bundler/gem_tasks'
4
4
  require 'rspec/core/rake_task'
5
5
  require 'time'
6
+ require_relative 'lib/kdeploy/version'
6
7
 
7
8
  # Default task runs tests and RuboCop, then pushes code
8
9
  task default: %w[push]
data/kdeploy.gemspec CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
6
6
  spec.name = 'kdeploy'
7
7
  spec.version = Kdeploy::VERSION
8
8
  spec.authors = ['Kdeploy Team']
9
- spec.email = ['team@kdeploy.dev']
9
+ spec.email = ['kevin197011@outlook.com']
10
10
 
11
11
  spec.summary = 'Lightweight agentless deployment tool with DSL, heredoc, and ERB template support'
12
12
  spec.description = <<~DESC
data/lib/kdeploy/cli.rb CHANGED
@@ -784,8 +784,8 @@ module Kdeploy
784
784
 
785
785
  task :cleanup_temp do
786
786
  run <<~BASH
787
- find /tmp -name "#{app_name}-*" -mtime +1 -exec rm -rf {} \\;
788
- find /var/tmp -name "#{app_name}-*" -mtime +1 -exec rm -rf {} \\;
787
+ find /tmp -name "${app_name}-*" -mtime +1 -exec rm -rf {} \\;
788
+ find /var/tmp -name "${app_name}-*" -mtime +1 -exec rm -rf {} \\;
789
789
  BASH
790
790
  end
791
791
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Kdeploy
4
4
  # Current version of Kdeploy
5
- VERSION = '0.1.0'
5
+ VERSION = '0.2.0'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kdeploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kdeploy Team
@@ -114,7 +114,7 @@ description: |
114
114
  parallel execution, SSH-based remote operations, heredoc syntax for multi-line scripts,
115
115
  and ERB templates for dynamic configuration generation.
116
116
  email:
117
- - team@kdeploy.dev
117
+ - kevin197011@outlook.com
118
118
  executables:
119
119
  - kdeploy
120
120
  extensions: []
@@ -125,6 +125,7 @@ files:
125
125
  - ".rubocop.yml"
126
126
  - LICENSE
127
127
  - README.md
128
+ - README_CN.md
128
129
  - Rakefile
129
130
  - bin/kdeploy
130
131
  - kdeploy.gemspec