Project

atoh

0.0
No commit activity in last 3 years
No release in over 3 years
Any Array to one Hash
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Atoh

Atoh is a flexible gem that aids in array serialize.

Installation

Install the gem and add to the application's Gemfile by executing:

$ bundle add atoh

If bundler is not being used to manage dependencies, install the gem by executing:

$ gem install atoh

Usage

fruts = ["banana", "lemon", "orange"]
vegetables=  ["beet", "carrot", "onion", "lettuce"]

Atoh.serialize(
fruts: fruts,
vegetables: vegetables
)
Output Json
{
    [
      {:fruits=>"banana", :vegetables=>"beet"},
      {:fruits=>"lemon", :vegetables=>"carrot"},
      {:fruits=>"watermelon", :vegetables=>"onion"},
      {:fruits=>"apple", :vegetables=>"lettuce"},
      {:fruits=>"orange", :vegetables=>"olive"}
    ]
}

Contributing

@welitonjjose