Popularity
8.4
Stable
Activity
0.0
Stable
58
9
13
Programming language: Crystal
Tags:
Configuration
Latest version: v0.6.1
crystal-toml alternatives and similar shards
Based on the "Configuration" category.
Alternatively, view crystal-toml alternatives based on common mentions on social networks and blogs.
-
totem
Crystal configuration with spirit. Load and parse configuration in JSON, YAML, dotenv formats.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of crystal-toml or a related project?
README
toml.cr
A TOML parser for Crystal, compliant with the v0.4.0 version of TOML.
Installation
Add this to your application's shard.yml
:
dependencies:
toml:
github: crystal-community/toml.cr
branch: master
Usage
require "toml"
toml_string = %(
title = "TOML Example"
[owner]
name = "Lance Uppercut"
dob = 1979-05-27T07:32:00Z
)
toml = TOML.parse(toml_string)
puts toml["title"] #=> "TOML Example"
owner = toml["owner"].as(Hash)
puts owner["name"] #=> "Lance Uppercut"
puts owner["dob"] #=> "1979-05-27 07:32:00 UTC"