Gert Goet

Results 31 issues of Gert Goet

This PR allows the SMTP-settings to be configured via a url, e.g. ```ruby Mail.defaults do delivery_method :smtp, url: 'smtps://user%40gmail.com:[email protected]' end ``` The Travis-builds seemed to fail for reasons unrelated to...

More Work Needed

The implementation of `#coerced?` is not in line with the documentation (and seems counterintuitive). The [docs state](https://github.com/solnic/coercible/blob/b08c274779ffafacb0bb21d1d7327ca665fedf31/lib/coercible/coercer/object.rb#L128): ``` ruby # @example when coercion was successful # coercer[String].coerced?(1) # => true...

Common punctuation is considered part of URLs, which results in non-existing URLs: Only when a URL is directly followed by a whitespace, will the URL work as intended. Proposed solution:...

2 fixes: - slight adjustment to `consume_until_whitespace` - fix #574

Fixes #1384, #1424, #1572 Before: https://github.com/mikel/mail/actions/runs/7384712114/job/20088103249#step:5:8

It seems that `#'parser/known-variables` does not handle variables in tags correctly: ```clojure user=> (selmer/known-variables "{% if {{var}} %}{{other-var}}{% endif %}") #{:other-var :{{var}}} ;; expected: ;; #{:other-var :var} ```

bug
help wanted

_This PR is a draft and meant for input._ This adds a source `:compliment.sources.class-members/qualified-methods` that should aid completions for Clojure v1.12. Examples: ```clojure user=> (compliment.core/completions "java.util.Date/") ({:candidate "java.util.Date/UTC", :type :static-method}...

enhancement

Reading https://clojure.org/reference/namespaces I was a bit surprised how it describes setting up a namespace when REPL-ing (first section, third paragraph): > The best way to set up a new namespace...

Issue https://github.com/babashka/fs/issues/112 Applied to [clj-kondo](https://github.com/clj-kondo/clj-kondo/compare/master...eval:clj-kondo:upgrade-fs). ## considerations - currently raises on `start` not existing (as fs/parent happily traverses up existing or not) - maybe this should be configurable (seems needed...

When writing bb-scripts operating on files I often find myself writing code related to A) finding a specific file that I'm sure exists in CWD or a parent folder (e.g....