White Rabbit

Results 195 comments of White Rabbit

I am also adding explicitApi() as a flag to the compiler. So we will need, for example, explicitly put `public` modifier to methods.

In https://github.com/akuleshov7/ktoml/pull/64 I had moved `okio` to a separate module. All the changes in API `that had been discussed above` were released in [v0.2.7](https://search.maven.org/artifact/com.akuleshov7/ktoml-core/0.2.7/jar) (still not 0.3.0 as it is...

Hm, @bishiboosh, and how about making a decoding with TOML, then make encoding of the resulted data with JSON and then compare results as JSON strings?

May be you can also add some small example to the readme? You have added new logic to the API, that can be useful for users. I fixed diktat/detekt code...

@bishiboosh, you have been waiting for a review for a half of a year (sorry), so I do not think it is a problem for me to wait several week😅

Duplicate of #11 Yeah, @NightEule5 and I started this work already: There is mostly everything done - this should take 1-2 weekends and 5-6 bottles of beer to implement

By the way - why do you need encoding of TOML? Usually TOML is used as a config-file format and decoder is needed. How do you want to use encoder?

So you plan to generate files in TOML format? Got it

> Ya, if you guys have a branch up for the encoding I wouldn't mind contributing. Everything is merged - AST enhancements, annotations for encoding -> so no existing branch...

@JakeWharton we already have a configuration property, that can skip all unknown keys: ``` Toml( ktomlConf = KtomlConf( // allow/prohibit unknown names during the deserialization, default false ignoreUnknownNames = false,...