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:
= 复制到剪贴板 已复制!

安装:
=

版本列表:

  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)

Runtime 依赖 (1):

super_module = 1.2.2

Development 依赖 (3):

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

业主:

推送:

作者:

  • Andy Maleh

SHA 256 校验和:

e58fc62497804e2a1edd7684bebbe85f47b3eab2ebdd3ca41d37b8a5fc972ad6

下载总量 7,340

这个版本 2,004

许可:

MIT

需要的 Ruby 版本: >= 0

链接: