Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oleander/builder
https://github.com/oleander/builder
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/oleander/builder
- Owner: oleander
- License: mit
- Created: 2021-04-05T16:36:32.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T15:38:18.000Z (over 3 years ago)
- Last Synced: 2024-11-20T20:12:08.615Z (2 months 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 [![Builder](https://github.com/oleander/builder/actions/workflows/main.yml/badge.svg)](https://github.com/oleander/builder/actions/workflows/main.yml)
## Example
``` ruby
require "h_builder"# Local values
name = "John"
age = 50hash = HBuilder.define(binding) do
person do
name name
age age
cars do
array do
name "BMW"
name "Volvo"
end
end
end
endpp hash
```