takeltau 0.34.14 → 0.34.15
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/lib/takeltau/bit/clipboard/copy.rb +1 -1
- data/lib/takeltau/bit/clipboard/lib.rb +2 -2
- data/lib/takeltau/bit/clipboard/paste.rb +1 -1
- data/lib/takeltau/bit/clipboard/pull.rb +1 -1
- data/lib/takeltau/bit/clipboard/push.rb +1 -1
- data/lib/takeltau/bit/scope/add.rb +1 -1
- data/lib/takeltau/bit/scope/new.rb +1 -1
- data/lib/takeltau/bit/scope/ssh.rb +1 -1
- data/lib/takeltau/default.yml +1 -1
- data/lib/takeltau/version +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e82f2af1c2c229ff2ea5d879564ccfd41ee16ba048476b90b78d9c103bce661a
|
|
4
|
+
data.tar.gz: ae183298641fe90a53709328cdce0ba5198fbc8ea7313e94df4f88a3b49957bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2edb533b46f12c60ba39eada83d029d7c48ebe21eac9a6f76199f4eac87aa5b7346f0c5ea0b0c88aeebfe5bad335bd0bff14e7f98dd750598fbcf0162ce1244e
|
|
7
|
+
data.tar.gz: 1b7d1797d21a1aefa321f32215c2971b8a3452b2656f0b107593ea99d46d3ebc755915ec8e6dbf8e7af06c06faecedc8101957dbe13ddac71f0bdb99567a95a0
|
|
@@ -57,7 +57,7 @@ module BitClipboardLib
|
|
|
57
57
|
|
|
58
58
|
# Sync workspace with upstream.
|
|
59
59
|
def _bit_clipboard_lib_sync_workspace
|
|
60
|
-
log.
|
|
60
|
+
log.info 'Syncing git workspace'
|
|
61
61
|
|
|
62
62
|
path = config.active['project_root_dir']
|
|
63
63
|
file = "#{path}/.bitmap"
|
|
@@ -105,7 +105,7 @@ module BitClipboardLib
|
|
|
105
105
|
|
|
106
106
|
# git pull.
|
|
107
107
|
def _bit_clipboard_lib_git_pull
|
|
108
|
-
log.
|
|
108
|
+
log.info 'Updating git workspace'
|
|
109
109
|
cmd_bit_clipboard_git_pull = format(
|
|
110
110
|
config.active['cmd_bit_clipboard_git_pull'],
|
|
111
111
|
main: config.active['git_bit_branch']
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
module BitClipboardPaste
|
|
5
5
|
# Backend method for bit paste.
|
|
6
6
|
def bit_clipboard_paste(cid, dir)
|
|
7
|
-
log.
|
|
7
|
+
log.info "Running bit paste \"#{cid}\" to \"#{dir}\""
|
|
8
8
|
|
|
9
9
|
return false unless configured? %w[project_root_dir]
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
module BitScopeAdd
|
|
5
5
|
# Backend method for bit scope add.
|
|
6
6
|
def bit_scope_add(scope)
|
|
7
|
-
log.
|
|
7
|
+
log.info "Adding bit remote scope \"#{scope}\" to local workspace"
|
|
8
8
|
|
|
9
9
|
return false unless configured? %w[bit_ssh bit_remote]
|
|
10
10
|
|
|
@@ -5,7 +5,7 @@ module BitScopeNew
|
|
|
5
5
|
# Backend method for bit scope new.
|
|
6
6
|
# @return [Int] status of new command
|
|
7
7
|
def bit_scope_new(scope)
|
|
8
|
-
log.
|
|
8
|
+
log.info "Creating new bit remote scope \"#{scope}\""
|
|
9
9
|
|
|
10
10
|
return false unless configured? %w[bit_ssh bit_remote]
|
|
11
11
|
|
data/lib/takeltau/default.yml
CHANGED
data/lib/takeltau/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.34.
|
|
1
|
+
0.34.15
|