Class: Mustermann::Mapper
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/mustermann-3.0.0/lib/mustermann/mapper.rb
Overview
A mapper allows mapping one string to another based on pattern parsing and expanding.
Instance Method Summary collapse
-
#[]=(key, value) ⇒ Object
Add a single mapping.
-
#convert(input, values = {}) ⇒ Object
(also: #[])
Convert a string according to mappings.
-
#initialize(map = {}, additional_values: :ignore, **options, &block) ⇒ Mapper
constructor
Creates a new mapper.
-
#to_h ⇒ Hash{Patttern: Expander}
Hash version of the mapper.
-
#update(map) ⇒ Object
Add multiple mappings.
Constructor Details
#initialize(**options) { ... } ⇒ Mapper #initialize(**options) {|mapper| ... } ⇒ Mapper #initialize(map = {}, **options) ⇒ Mapper
Creates a new mapper.
44 45 46 47 48 49 50 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/mustermann-3.0.0/lib/mustermann/mapper.rb', line 44 def initialize(map = {}, additional_values: :ignore, **, &block) @map = [] @options = @additional_values = additional_values block.arity == 0 ? update(yield) : yield(self) if block update(map) if map end |
Instance Method Details
#[]=(key, value) ⇒ Object
Add a single mapping.
85 86 87 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/mustermann-3.0.0/lib/mustermann/mapper.rb', line 85 def []=(key, value) update key => value end |
#convert(input, values = {}) ⇒ Object Also known as: []
Convert a string according to mappings. You can pass in additional params.
73 74 75 76 77 78 79 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/mustermann-3.0.0/lib/mustermann/mapper.rb', line 73 def convert(input, values = {}) @map.inject(input) do |current, (pattern, )| params = pattern.params(current) params &&= Hash[values.merge(params).map { |k,v| [k.to_s, v] }] .(params) ? .(params) : current end end |
#to_h ⇒ Hash{Patttern: Expander}
Returns Hash version of the mapper.
64 65 66 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/mustermann-3.0.0/lib/mustermann/mapper.rb', line 64 def to_h Hash[@map] end |
#update(map) ⇒ Object
Add multiple mappings.
55 56 57 58 59 60 61 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/mustermann-3.0.0/lib/mustermann/mapper.rb', line 55 def update(map) map.to_h.each_pair do |input, output| input = Mustermann.new(input, **@options) output = Expander.new(*output, additional_values: @additional_values, **@options) unless output.is_a? Expander @map << [input, output] end end |