Sha256: c61731d329a74e8e641be86a6e390ea52be548d04b1e790555bbe253b18492ed
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 KB
Contents
# frozen_string_literal: true # takeltau bit clipboard paste module BitClipboardPaste # Backend method for bit paste. def bit_clipboard_paste(cid, dir) log.info "Running bit paste \"#{cid}\" to \"#{dir}\"" return false unless configured? %w[project_root_dir] return false unless _bit_clipboard_lib_prepare_workspace return false unless _bit_clipboard_paste_cid_exists? cid _bit_clipboard_paste_import_cid cid, dir _bit_clipbpard_lib_remove_bit_artifacts _bit_clipboard_lib_sync_workspace log.info "Pasted bit component \"#{cid}\" to directory \"#{dir}\"" true end private # paste bit component into directory. def _bit_clipboard_paste_import_cid(cid, dir) cmd_bit_import_cid = format( config.active['cmd_bit_clipboard_paste_bit_import_cid'], cid: cid, dir: dir ) run cmd_bit_import_cid end # Check if remote component exists. def _bit_clipboard_paste_cid_exists?(cid) scope = cid.scan(%r{([^/]*).*}).first.first log.debug "Checking if scope \"#{scope}\" " \ "contains component id \"#{cid}\"" bit_list_scope = _bit_clipboard_paste_cid_exists_list_scope scope return true if bit_list_scope.include? "\"id\": \"#{cid}\"," log.error "No remote component \"#{cid}\"" false end # Get components in remote scope. def _bit_clipboard_paste_cid_exists_list_scope(scope) cmd_bit_list_scope = format( config.active['cmd_bit_clipboard_paste_bit_list_scope'], scope: scope ) run cmd_bit_list_scope end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
takeltau-0.34.15 | lib/takeltau/bit/clipboard/paste.rb |