Module: Doing::Util
Overview
Utilities
Defined Under Namespace
Modules: Backup
Instance Method Summary collapse
- #args_for_editor(editor) ⇒ Object
-
#deep_merge_hashes(master_hash, other_hash) ⇒ Object
Non-destructive version of deep_merge_hashes! See that method.
-
#deep_merge_hashes!(target, overwrite) ⇒ Object
Merges a master hash with another hash, recursively.
- #default_editor ⇒ Object
- #duplicable?(obj) ⇒ Boolean
- #duplicate_frozen_values(target) ⇒ Object
- #editor_with_args ⇒ Object
-
#exec_available(cli) ⇒ Object
Test if command line tool is available.
- #find_default_editor(editor_for = 'default') ⇒ Object
-
#first_available_exec(*commands) ⇒ Object
Return the first valid executable from a list of commands.
- #mergable?(value) ⇒ Boolean
- #merge_default_proc(target, overwrite) ⇒ Object
- #merge_values(target, overwrite) ⇒ Object
- #safe_load_file(filename) ⇒ Object
- #user_home ⇒ Object
-
#write_to_file(file, content, backup: true) ⇒ Object
Write content to a file.
Instance Method Details
#args_for_editor(editor) ⇒ Object
142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/doing/util.rb', line 142 def args_for_editor(editor) return editor if editor =~ /-\S/ args = case editor when /^(subl|code|mate)$/ ['-w'] when /^(vim|mvim)$/ ['-f'] else [] end "#{editor} #{args.join(' ')}" end |
#deep_merge_hashes(master_hash, other_hash) ⇒ Object
Non-destructive version of deep_merge_hashes! See that method.
57 58 59 |
# File 'lib/doing/util.rb', line 57 def deep_merge_hashes(master_hash, other_hash) deep_merge_hashes!(master_hash.dup, other_hash) end |
#deep_merge_hashes!(target, overwrite) ⇒ Object
Merges a master hash with another hash, recursively.
master_hash - the "parent" hash whose values will be overridden other_hash - the other hash whose values will be persisted after the merge
This code was lovingly stolen from some random gem: http://gemjack.com/gems/tartan-0.1.1/classes/Hash.html
Thanks to whoever made it.
70 71 72 73 74 75 76 |
# File 'lib/doing/util.rb', line 70 def deep_merge_hashes!(target, overwrite) merge_values(target, overwrite) merge_default_proc(target, overwrite) duplicate_frozen_values(target) target end |
#default_editor ⇒ Object
134 135 136 |
# File 'lib/doing/util.rb', line 134 def default_editor @default_editor ||= find_default_editor end |
#duplicable?(obj) ⇒ Boolean
78 79 80 81 82 83 84 85 |
# File 'lib/doing/util.rb', line 78 def duplicable?(obj) case obj when nil, false, true, Symbol, Numeric false else true end end |
#duplicate_frozen_values(target) ⇒ Object
43 44 45 46 47 |
# File 'lib/doing/util.rb', line 43 def duplicate_frozen_values(target) target.each do |key, val| target[key] = val.dup if val.frozen? && duplicable?(val) end end |
#editor_with_args ⇒ Object
138 139 140 |
# File 'lib/doing/util.rb', line 138 def editor_with_args args_for_editor(default_editor) end |
#exec_available(cli) ⇒ Object
Test if command line tool is available
21 22 23 24 25 |
# File 'lib/doing/util.rb', line 21 def exec_available(cli) return false if cli.nil? !TTY::Which.which(cli).nil? end |
#find_default_editor(editor_for = 'default') ⇒ Object
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/doing/util.rb', line 156 def find_default_editor(editor_for = 'default') # return nil unless $stdout.isatty || ENV['DOING_EDITOR_TEST'] if ENV['DOING_EDITOR_TEST'] return ENV['EDITOR'] end editor_config = Doing.config.settings['editors'] if editor_config.is_a?(String) Doing.logger.warn('Deprecated:', "Please update your configuration, 'editors' should be a mapping. Delete the key and run `doing config --update`.") return editor_config end if editor_config[editor_for] editor = editor_config[editor_for] # Doing.logger.debug('Editor:', "Using #{editor} from config 'editors->#{editor_for}'") return editor unless editor.nil? || editor.empty? end if editor_for != 'editor' && editor_config['default'] editor = editor_config['default'] # Doing.logger.debug('Editor:', "Using #{editor} from config: 'editors->default'") return editor unless editor.nil? || editor.empty? end editor ||= ENV['DOING_EDITOR'] || ENV['GIT_EDITOR'] || ENV['EDITOR'] unless editor.nil? || editor.empty? # Doing.logger.debug('Editor:', "Found editor in environment variables: #{editor}") return editor end Doing.logger.debug('ENV:', 'No EDITOR environment variable, testing available editors') editors = %w[vim vi code subl mate mvim nano emacs] editors.each do |ed| return TTY::Which.which(ed) if TTY::Which.which(ed) Doing.logger.debug('ENV:', "#{ed} not available") end nil end |
#first_available_exec(*commands) ⇒ Object
Return the first valid executable from a list of commands
32 33 34 35 |
# File 'lib/doing/util.rb', line 32 def first_available_exec(*commands) commands.compact.map(&:strip).reject(&:empty?).uniq .find { |cmd| exec_available(cmd.split.first) } end |
#mergable?(value) ⇒ Boolean
87 88 89 |
# File 'lib/doing/util.rb', line 87 def mergable?(value) value.is_a?(Hash) end |
#merge_default_proc(target, overwrite) ⇒ Object
37 38 39 40 41 |
# File 'lib/doing/util.rb', line 37 def merge_default_proc(target, overwrite) return unless target.is_a?(Hash) && overwrite.is_a?(Hash) && target.default_proc.nil? target.default_proc = overwrite.default_proc end |
#merge_values(target, overwrite) ⇒ Object
91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/doing/util.rb', line 91 def merge_values(target, overwrite) target.merge!(overwrite) do |_key, old_val, new_val| if new_val.nil? old_val elsif mergable?(old_val) && mergable?(new_val) deep_merge_hashes(old_val, new_val) else new_val end end end |
#safe_load_file(filename) ⇒ Object
130 131 132 |
# File 'lib/doing/util.rb', line 130 def safe_load_file(filename) SafeYAML.load_file(filename) || {} end |
#user_home ⇒ Object
8 9 10 11 12 13 14 |
# File 'lib/doing/util.rb', line 8 def user_home if Dir.respond_to?('home') Dir.home else File.('~') end end |
#write_to_file(file, content, backup: true) ⇒ Object
Write content to a file
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/doing/util.rb', line 110 def write_to_file(file, content, backup: true) unless file puts content return end Doing.logger.benchmark(:write_file, :start) file = File.(file) Backup.write_backup(file) if backup File.open(file, 'w+') do |f| f.puts content Doing.logger.debug('Write:', "File written: #{file}") end Doing.logger.benchmark(:_post_write_hook, :start) Hooks.trigger :post_write, file Doing.logger.benchmark(:_post_write_hook, :finish) Doing.logger.benchmark(:write_file, :finish) end |