https://github.com/oleander/builder
https://github.com/oleander/builder
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oleander/builder
- Owner: oleander
- License: mit
- Created: 2021-04-05T16:36:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T15:38:18.000Z (about 5 years ago)
- Last Synced: 2025-01-21T14:47:44.538Z (over 1 year ago)
- Language: Ruby
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Builder [](https://github.com/oleander/builder/actions/workflows/main.yml)
## Example
``` ruby
require "h_builder"
# Local values
name = "John"
age = 50
hash = HBuilder.define(binding) do
person do
name name
age age
cars do
array do
name "BMW"
name "Volvo"
end
end
end
end
pp hash
```