takeltau 0.34.14 → 0.34.15

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: 026eacf3ac013b83881d9a9695186617779a1fe7578f885f521e9c59b4cf1cb1
4
- data.tar.gz: 01454d41117dbf35c48c958324858d000664434f99b18eb4ac897ef84e2f9eea
3
+ metadata.gz: e82f2af1c2c229ff2ea5d879564ccfd41ee16ba048476b90b78d9c103bce661a
4
+ data.tar.gz: ae183298641fe90a53709328cdce0ba5198fbc8ea7313e94df4f88a3b49957bb
5
5
  SHA512:
6
- metadata.gz: 1f60dfe409f1f8c7e2368bfb00fe24b72255f4da1244306031e55078c3cb34618a7f569af2e3db4d95b0f3b3aaa07847feb29490c15889908f05c715e6b58116
7
- data.tar.gz: 375da1dc4b1edb326134bd30b19a927fbebbd19efdb9a04bac883701f59d4c8b84c664cfa21f9dbe26be2b772d92e3fa55be2605a534adde2bfcab28b562b6e4
6
+ metadata.gz: 2edb533b46f12c60ba39eada83d029d7c48ebe21eac9a6f76199f4eac87aa5b7346f0c5ea0b0c88aeebfe5bad335bd0bff14e7f98dd750598fbcf0162ce1244e
7
+ data.tar.gz: 1b7d1797d21a1aefa321f32215c2971b8a3452b2656f0b107593ea99d46d3ebc755915ec8e6dbf8e7af06c06faecedc8101957dbe13ddac71f0bdb99567a95a0
@@ -7,7 +7,7 @@ module BitClipboardCopy
7
7
  # remove trailing slash
8
8
  dir = dir.chomp('/')
9
9
 
10
- log.debug "Running bit copy \"#{dir}\" to \"#{scope}\""
10
+ log.info "Running bit copy \"#{dir}\" to \"#{scope}\""
11
11
 
12
12
  return false unless configured? %w[project_root_dir]
13
13
 
@@ -57,7 +57,7 @@ module BitClipboardLib
57
57
 
58
58
  # Sync workspace with upstream.
59
59
  def _bit_clipboard_lib_sync_workspace
60
- log.debug 'Syncing git workspace'
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.debug 'Updating git workspace'
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.debug "Running bit paste \"#{cid}\" to \"#{dir}\""
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 BitClipboardPull
5
5
  # Backend method for bit pull.
6
6
  def bit_clipboard_pull
7
- log.debug 'Running bit pull'
7
+ log.info 'Running bit pull'
8
8
 
9
9
  return false unless configured? %w[project_root_dir]
10
10
 
@@ -4,7 +4,7 @@
4
4
  module BitClipboardPush
5
5
  # Backend method for bit push.
6
6
  def bit_clipboard_push
7
- log.debug 'Running bit push'
7
+ log.info 'Running bit push'
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.debug "Adding bit remote scope \"#{scope}\" to local workspace"
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.debug "Creating new bit remote scope \"#{scope}\""
8
+ log.info "Creating new bit remote scope \"#{scope}\""
9
9
 
10
10
  return false unless configured? %w[bit_ssh bit_remote]
11
11
 
@@ -4,7 +4,7 @@
4
4
  module BitScopeSSH
5
5
  # Backend method for bit scope ssh.
6
6
  def bit_scope_ssh
7
- log.debug 'Logging in to bit remote server'
7
+ log.info 'Logging in to bit remote server'
8
8
 
9
9
  return false unless configured? %w[bit_ssh]
10
10
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- bit_dev_user: 'takelage'
2
+ bit_dev_user: 'takel'
3
3
  bit_remote: ''
4
4
  bit_require_file: 'bitrequire.yml'
5
5
  bit_root: '/bit'
data/lib/takeltau/version CHANGED
@@ -1 +1 @@
1
- 0.34.14
1
+ 0.34.15
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: takeltau
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.14
4
+ version: 0.34.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takelwerk