Peter Leitzen

Results 8 issues of Peter Leitzen

It would be nice to streamline testing for candy check so stubbing verification gets easier. More info to follow.

enhancement
help wanted

Using String filters can include wrong files to groups because it matches if the string is contained within the path. For example: ```ruby # This matches files like `./lib/foo.rb` #...

Since this gems works in Ruby 3.0, 3.1, and 3.2 we could add it to travis to run tests on regular basis. See also https://gitlab.com/gitlab-org/gitlab/-/issues/422665#note_1555206155.

:wave: I've noticed that the https://github.com/kwilczynski/ruby-magic/blob/main/CHANGELOG.md wasn't updated since `v0.2.0`. Is there a way of automating the creation of this file? Alternatively, it could be useful to create a PR...

question

How to reproduce: - Setup rails app - require minitest-rails and minitest-around (add them to Gemfile) Workaround: ``` ruby group :test do gem 'minitest-around', :require => false end ``` Possible...

This makes subclassing Html2Text easier as `convert` does not have to be reimplemented.

This PR optimizes merging line coverage: * `Integer#to_i` and `NilClass#to_i` showed up in stack profiler which resulted to slow down `merge_line_coverage` a lot * `Array#zip` created a lot of intermediate...

This commit prevents hiding valid production paths like: - app/models/test/me.rb - app/models/features/ftw.rb - app/services/spec/clever.rb - lib/autotest/forever.rb Closes https://github.com/simplecov-ruby/simplecov/issues/1016