Sha256: 56c0e8e066de43362952bbd194e61db32a2bf3dbabe2cad694b9ccc59aa4f5a5
Contents?: true
Size: 1.88 KB
Versions: 3
Compression:
Stored size: 1.88 KB
Contents
require 'fig/statement' require 'fig/statement/environment_variable' module Fig; end # A statement that specifies or modifies a path environment variable, e.g. # "append", "path", "add" (though those are all synonyms). class Fig::Statement::Path < Fig::Statement include Fig::Statement::EnvironmentVariable # Yields on error. def self.parse_name_value(combined, &error_block) variable, raw_value = seperate_name_and_value combined, &error_block tokenized_value = tokenize_value(raw_value, &error_block) if tokenized_value.to_escaped_string.length < 1 yield %Q<The value of path variable #{variable} is empty.> return end return [variable, tokenized_value] end def self.parse_v0_name_value(combined, &error_block) variable, raw_value = seperate_name_and_value combined, &error_block if raw_value.length < 1 yield %Q<The value of path variable #{variable} is empty.> return end base_v0_value_validation(variable, raw_value, &error_block) if raw_value =~ /([;:<>|])/ yield %Q<The value of path variable #{variable} (#{raw_value}) contains a "#{raw_value}" character.> return end return [variable, tokenize_value(raw_value, &error_block)] end def initialize(line_column, source_description, name, tokenized_value) super(line_column, source_description) @name = name @tokenized_value = tokenized_value end def statement_type() return 'path' end def is_environment_variable?() return true end def deparse_as_version(deparser) return deparser.path(self) end private def minimum_grammar() base_grammar_version = standard_minimum_grammar return base_grammar_version if base_grammar_version[0] != 0 value = tokenized_value.to_escaped_string if value =~ / ( [;:<>|] ) /x return [1, %Q<contains a "#{$1}" character>] end return [0] end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fig-1.7.0 | lib/fig/statement/path.rb |
fig-1.6.0 | lib/fig/statement/path.rb |
fig-1.5.0 | lib/fig/statement/path.rb |