Thomas Thomassen
Thomas Thomassen
This is only 125%: 
Let's clean up the code to make it conform to the Style Guide: https://github.com/styleguide/ruby This includes max 80 characters line width and making variables have verbose names instead of short...
Right now nearly all the headers are different. Lets clean them up to be uniform.
We should not assume file operations succeed. See confusion in this thread related to user trying to load file from a path with non-ASCII characters. I also think we should...
If a filename is given without an extension ".stl" should be appended. Mismatching extension names should also be corrected.
When faces are lost in the cleanup process it would be good to analyse why the face was lost and provide the user with information. Typical cause is small edges.
We should set up performance profiles so we can monitor performance as we make changes. See #48 for info on setting up profiles.
I've written a small utility to keep track of the performance of given methods without having to modify the source code or suffer from big performance penalties. It's part of...
Would it be possible to have Go To Definition when over a `require` statement open the file it refers to - if it's a string literal?
Is `nil` not always recognized by steep? ```rb module Example # @return [nil] def self.hello end # @return [Array] def self.world end end ``` ```rb [INFER] Assuming from filename you...