Class: Teodoro::ArquivoData::ChavesValores
- Inherits:
-
Object
- Object
- Teodoro::ArquivoData::ChavesValores
- Extended by:
- Forwardable
- Defined in:
- lib/teodoro/arquivo_data.rb
Defined Under Namespace
Classes: Item
Instance Method Summary collapse
- #atualizando(chaves_valores) ⇒ Object
-
#initialize(itens) ⇒ ChavesValores
constructor
A new instance of ChavesValores.
- #map ⇒ Object
Constructor Details
#initialize(itens) ⇒ ChavesValores
Returns a new instance of ChavesValores.
100 101 102 103 104 |
# File 'lib/teodoro/arquivo_data.rb', line 100 def initialize(itens) @itens = itens .map { Item.new(*_1) } .select(&:selecionar?) end |
Instance Method Details
#atualizando(chaves_valores) ⇒ Object
111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/teodoro/arquivo_data.rb', line 111 def atualizando(chaves_valores) chaves_valores .dup .tap do itens.each do |item| chaves_valores .delete_if { |chave, _| item.semelhante?(chave) } end end .merge(itens.to_h { [_1.chave, _1.valor] }) end |
#map ⇒ Object
106 107 108 109 |
# File 'lib/teodoro/arquivo_data.rb', line 106 def map itens .map { yield [_1.chave, _1.valor] } end |