dalehenrich / filetree

Monticello repository for directory-based Monticello packages enabling the use of git, svn, etc. for managing Smalltalk source code.
https://github.com/CampSmalltalk/Cypress
MIT License
133 stars 26 forks source link

`._` files with trailing `.st` files can be created on OS X by Finder and Time Machine #134

Open dalehenrich opened 10 years ago

dalehenrich commented 10 years ago

See this page for Apples excuse:) and this message for the diagnosis.

Here's a proposed bugfix for MCFileTreeStCypressReader>>addMethodDefinitionsForClass:methodProperties:in::

          ((self fileUtils directoryFromEntry: entry) entries
            select: [ :each | each name endsWith: '.st' and: [(each name beginsWtih '.') not ])
            do: [ :methodEntry |

There might be others places to patch