Description
A Racc based TOML Ruby parser supporting the 0.4.0 version of the spec.
Tomlrb alternatives and similar gems
Based on the "Parsers" category.
Alternatively, view Tomlrb alternatives based on common mentions on social networks and blogs.
-
Nokogiri
Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. -
Sablon
Ruby Document Template Processor based on docx templates and Mail Merge fields. -
ROXML
ROXML is a module for binding Ruby classes to XML. It supports custom mapping and bidirectional marshalling between Ruby and XML using annotation-style class methods, via Nokogiri or LibXML. -
Shale
Shale is a Ruby object mapper and serializer for JSON, YAML and XML. It allows you to parse JSON, YAML and XML data and convert it into Ruby data structures, as well as serialize data structures into JSON, YAML or XML. -
HappyMapper
Object to XML mapping library, using Nokogiri (Fork from John Nunemaker's Happymapper) -
Nokolexbor
High-performance HTML5 parser for Ruby based on Lexbor, with support for both CSS selectors and XPath. -
Tomlib
Tomlib is a fast and standards-compliant TOML parser and generator for Ruby. -
DotStrings
A parser for Apple strings files (.strings) written in Ruby.
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Tomlrb or a related project?
Popular Comparisons
README
Tomlrb
A Racc based TOML Ruby parser supporting the 1.0.0 version of the spec.
TODO
- Dumper
Installation
Add this line to your application's Gemfile:
gem 'tomlrb'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tomlrb
Usage
Tomlrb.parse("[toml]\na = [\"array\", 123]")
or
Tomlrb.load_file('my_file', symbolize_keys: true)
Benchmark
You can run the benchmark against the only other v0.5.0 compliant parser to my knowledge with ruby benchmarks/bench.rb
.
Here are the results on my machine:
Warming up --------------------------------------
emancu/toml-rb 1.000 i/100ms
fbernier/tomlrb 17.000 i/100ms
Calculating -------------------------------------
emancu/toml-rb 10.630 (±28.2%) i/s - 49.000 in 5.035997s
fbernier/tomlrb 181.585 (±24.8%) i/s - 850.000 in 5.019273s
Comparison:
fbernier/tomlrb: 181.6 i/s
emancu/toml-rb: 10.6 i/s - 17.08x (± 0.00) slower
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run bin/console
for an interactive prompt that will allow you to experiment.
Do not forget to regenerate the parser when you modify rules in the parser.y
file using rake compile
.
Run the tests using rake test
.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
to create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Contributing
- Fork it ( https://github.com/[my-github-username]/tomlrb/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
Thanks
Thanks to @jpbougie for the crash course on the Chomsky hierarchy and general tips.