Marcus Ilgner
Marcus Ilgner
So I started looking into this again. Now that I am more familiar with Kotlin and a bit more familiar with mockk, too, I thought I might stand a better...
I recently re-factored some things in the project to use the latest regular Hibernate and the corresponding classloader registration changed as follows: ```diff private fun hibernateServiceRegistry( configuration: Configuration, - classloaders:...
Actually this is quite simple, posting just in case someone is looking for it: ``` class PhoneNumberValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) return if value.nil? || value.empty? || Phoner::Phone.valid?(value)...
+1 for the crowdfunding approach. There are probably many developers and also companies that benefit from this great project and would contribute some money. Personally I'm still extremely new to...
I think #57 might be a possible duplicate with some background on why it's happening.
Edit: I was right the first time, just accidentally grabbed a device with a wrong build in the meantime. ~~Looks like my optimism was a bit premature... The problem still...
I think it should be up to the library user to decide whether they want to prepare a statement or kick it off only once. This should make state management...
@pimeys thank you for summing it up! I hadn't looked at the implementation-side of things yet and was thinking about it from the API user perspective. Not being able to...
I usually only executed `./gradlew clean check` which would depend on the kover tasks and generate a report. ~~Running `./gradlew check` on the top-level project where most of the sub-projects...
> @milgner, did you manage to create a producer? Unfortunately, I did not... For the time being, we switched to Jacoco. Not sure when there might be time for a...