Module: Twig::Options
- Included in:
- Twig
- Defined in:
- lib/twig/options.rb
Overview
Handles reading options from command-line switches and config files.
Constant Summary collapse
- CONFIG_PATH =
'~/.twigconfig'- DEPRECATED_CONFIG_PATH =
'~/.twigrc'- MIN_PROPERTY_WIDTH =
3
Instance Method Summary collapse
- #parse_config_file(config_path) ⇒ Object
- #read_config_file! ⇒ Object
- #readable_config_file_path ⇒ Object
- #set_header_style_option(value) ⇒ Object
- #set_option(key, value) ⇒ Object
- #set_property_width_option(value) ⇒ Object
- #unset_option(key) ⇒ Object
Instance Method Details
#parse_config_file(config_path) ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/twig/options.rb', line 37 def parse_config_file(config_path) lines = [] File.open(config_path) do |file| lines = file.read.split("\n") end lines.inject({}) do |opts, line| line = line.strip next opts if line =~ /^#/ key, value = line.split(':', 2) key = key ? key.strip : '' if !key.empty? && value opts[key] = value.strip elsif !line.empty? $stderr.puts %{Warning: Invalid line "#{line}" in #{config_path}. } \ 'Expected format: `key: value`' end opts end end |
#read_config_file! ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/twig/options.rb', line 62 def read_config_file! config_path = readable_config_file_path return unless config_path = parse_config_file(config_path) .each do |key, value| case key # Displaying branches: when 'format' set_option(:format, value) when 'except-property' set_option(:property_except_name, value) when 'only-property' set_option(:property_only_name, value) when 'header-style' set_option(:header_style, value) when 'reverse' set_option(:reverse, value) when /-width$/ property_name = key.sub(/-width$/, '').to_sym set_option(:property_width, property_name => value) # Filtering branches: when 'branch' set_option(:branch, value) when 'max-days-old' set_option(:max_days_old, value) when /^except-/ property_name = key.sub(/^except-/, '').to_sym set_option(:property_except, property_name => value) when /^only-/ property_name = key.sub(/^only-/, '').to_sym set_option(:property_only, property_name => value) # GitHub integration: when 'github-api-uri-prefix' set_option(:github_api_uri_prefix, value) when 'github-uri-prefix' set_option(:github_uri_prefix, value) # Subcommands: when 'twig-rebase-autoconfirm' set_option(:twig_rebase_autoconfirm, value) end end end |
#readable_config_file_path ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/twig/options.rb', line 9 def readable_config_file_path config_path = File.(CONFIG_PATH) if File.exist?(config_path) unless File.readable?(config_path) $stderr.puts "Warning: #{CONFIG_PATH} is not readable." return # Stop if file exists but is not readable end else config_path = File.(DEPRECATED_CONFIG_PATH) if File.exist?(config_path) if File.readable?(config_path) $stderr.puts "DEPRECATED: #{DEPRECATED_CONFIG_PATH} is deprecated. " \ "Please rename it to #{CONFIG_PATH}." else $stderr.puts "DEPRECATED: #{DEPRECATED_CONFIG_PATH} is deprecated. " \ "Please rename it to #{CONFIG_PATH} and make it readable." return # Stop if file exists but is not readable end else return # Stop if neither file exists end end config_path end |
#set_header_style_option(value) ⇒ Object
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/twig/options.rb', line 164 def set_header_style_option(value) style_values = value.split(/\s+/).map(&:to_sym) colors = Twig::Display::COLORS.keys weights = Twig::Display::WEIGHTS.keys color = nil weight = nil style_values.each do |style_value| if !color && colors.include?(style_value) color = style_value elsif !weight && weights.include?(style_value) weight = style_value else abort %{The value `--header-style=#{value}` is invalid.} end end [:header_color] = color if color [:header_weight] = weight if weight end |
#set_option(key, value) ⇒ Object
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/twig/options.rb', line 111 def set_option(key, value) case key when :branch if Twig::Branch.all_branch_names.include?(value) [:branch] = value else abort %{The branch `#{value}` could not be found.} end when :format if value == 'json' [:format] = value.to_sym else abort %{The format `#{value}` is not supported; only `json` is supported.} end when :github_api_uri_prefix, :github_uri_prefix [key] = value when :header_style set_header_style_option(value) when :max_days_old if Twig::Util.numeric?(value) [:max_days_old] = value.to_f else abort %{The value `--max-days-old=#{value}` is invalid.} end when :property_except, :property_only property_hash = value.inject({}) do |hsh, (property, val)| hsh.merge(property => Regexp.new(val)) end [key] ||= {} [key].merge!(property_hash) when :property_except_name, :property_only_name [key] = Regexp.new(value) when :property_width set_property_width_option(value) when :reverse [:reverse] = Twig::Util.truthy?(value) when :twig_rebase_autoconfirm [:twig_rebase_autoconfirm] = Twig::Util.truthy?(value) when :unset_property [key] = value end end |
#set_property_width_option(value) ⇒ Object
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/twig/options.rb', line 185 def set_property_width_option(value) [:property_width] ||= {} value.each do |property_name, property_value| unless Twig::Util.numeric?(property_value) abort %{The value `--#{property_name}-width=#{property_value}` is invalid.} end property_name_width = property_name.to_s.size property_value = property_value.to_i min_property_value = [property_name_width, MIN_PROPERTY_WIDTH].max if property_value < min_property_value min_desc = if property_value < property_name_width %{#{property_name_width} (width of "#{property_name}")} else MIN_PROPERTY_WIDTH.to_s end error = %{The value `--#{property_name}-width=#{property_value}` } + %{is too low. The minimum is #{min_desc}.} abort error end [:property_width][property_name] = property_value end end |
#unset_option(key) ⇒ Object
215 216 217 |
# File 'lib/twig/options.rb', line 215 def unset_option(key) .delete(key) end |