RubyGems Navigation menu

to_collection 1.0.1

Treat an array of objects and a singular object uniformly as a collection of objects. Especially useful in processing REST Web Service API JSON responses in a functional approach. Canonicalize data to treat uniformly whether it comes in as a single object or an array of objects, dropping `nils` out automatically. API: `object.to_collection(compact)` where `compact` is a boolean for whether to compact collection or not. It is true by default. Example: ```ruby city_counts = {} people_http_request.to_collection.each do |person| city_counts[person["city"]] ||= 0 city_counts[person["city"]] += 1 end ``` Wanna keep `nil` values? No problem! Just pass `false` as an argument: ```ruby bad_people_count = 0 city_counts = {} people_http_request.to_collection(false).each do |person| if person.nil? bad_people_count += 1 else city_counts[person["city"]] ||= 0 city_counts[person["city"]] += 1 end end ```

Gemfile:
= Copiar al portapapeles ¡Copiado!

instalar:
=

Versiones:

  1. 2.0.1 - December 09, 2020 (9,5 KB)
  2. 2.0.0 - May 29, 2020 (8,5 KB)
  3. 1.0.1 - August 06, 2019 (9,5 KB)
  4. 1.0.0 - February 22, 2017 (9,5 KB)

dependencias de Runtime (1):

super_module = 1.2.2

dependencias de Development (3):

coveralls ~> 0.8.19
jeweler ~> 2.3.3
rspec ~> 3.5.0

Propietarios:

Subida por:

Autores:

  • Andy Maleh

SHA 256 checksum:

e58fc62497804e2a1edd7684bebbe85f47b3eab2ebdd3ca41d37b8a5fc972ad6

Total de descargas 7.334

Para esta versión 2.003

Licencia:

MIT

Versión de Ruby requerida: >= 0

Enlace: