json-alias
JSON::Alias
Macro for generating an alias type from JSON/YAML. Useful for parsing JSON/YAML without needing to manually create a type alias or parse by hand.
Installation
-
Add the dependency to your
shard.yml
:dependencies: json-alias: github: nobodywasishere/json-alias
-
Run
shards install
Usage
Generate an alias from a JSON/YAML file at compile time:
require "json"
require "json-alias"
class TestClass
# alias JsonData = Array(Hash(String, Int32 | String) | Hash(String, Int32) | Hash(String, String))
# Need to pass absolute path to example, hence __DIR__
JSON::Alias.from_json JsonData, "#{__DIR__}/example.json"
# alias YamlData = Array(Hash(String, Int32 | String) | Hash(String, Int32) | Hash(String, String))
JSON::Alias.from_yaml YamlData, "#{__DIR__}/example.yaml"
getter json : JsonData
getter yaml : YamlData
def initialize
data = File.read("#{__DIR__}/data.json")
@json = JsonData.from_json(data)
@yaml = YamlData.from_json(data)
end
end
tc = TestClass.new
puts tc.json
puts tc.yaml
puts "Success."
Tool for generating type from command-line:
$ shards build parse_data --release
$ ./bin/parse_data --file spec/example.json --type json
Array(Hash(String, Int32 | String) | Hash(String, Int32) | Hash(String, String))
Development
TODO: Write development instructions here
Contributing
- Fork it (https://github.com/nobodywasishere/json-alias/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Margret Riegert - creator and maintainer
Repository
json-alias
Owner
Statistic
- 0
- 0
- 0
- 0
- 0
- almost 2 years ago
- February 17, 2023
License
MIT License
Links
Synced at
Thu, 21 Nov 2024 13:03:50 GMT
Languages