Should Scala IDE Worksheets be part of your open git repository?

Posted by JacobusR on Programmers See other posts from Programmers or by JacobusR
Published on 2012-11-21T06:13:13Z Indexed on 2012/11/21 11:23 UTC
Read the original article Hit count: 177

Filed under:
|
|

Those familiar with Scala IDE will know about the great testing environment offered by the Scala Worksheet. You can scribble and scratch, much like in the REPL, but with all the goodness added by the IDE as a whole (refactoring, saving, error checking, etc).

When you create a worksheet, it is created with the .sc extension, and also creates a artifact under a hidden directory called .worksheet.

This is all fine and dandy, but should one include these in your public .git repositories? People who does not use Scala IDE (or older versions) may find these files confusing. On the other hand, making some of your experiments public to developers who are using Scala IDE, may give them a quick start into experimenting and learning the project.

© Programmers or respective owner

Related posts about git

Related posts about github