Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up[Smalltalk] add support for Dolphin Smalltalk #2027
Conversation
shiftkey
added
the
new template
label
Jan 29, 2017
shiftkey
reviewed
Jan 29, 2017
|
|
||
| # Pharo Smalltalk Debug log file | ||
| PharoDebug.log | ||
|
|
||
| # Squeak Smalltalk Debug log file | ||
| SqueakDebug.log | ||
|
|
||
| # Dolphin Smalltalk source file | ||
| *.sml |
This comment has been minimized.
This comment has been minimized.
shiftkey
Jan 29, 2017
Member
It's not clear to me that these source files can be safely ignored. Do you have any links to documentation or discussion about these files?
This comment has been minimized.
This comment has been minimized.
rejurime
Feb 6, 2017
•
Author
Contributor
The Dolphin Smalltalk 7 fresh image is composed of 3 files:
- ImageName.chg
- ImageName.sml
- ImageName.img7
Then you create a Package where your own code is store and the package is what you have to version.
This comment has been minimized.
This comment has been minimized.
rejurime
Feb 6, 2017
Author
Contributor
This can help https://github.com/dolphinsmalltalk/Contributions the official contribution repository.
This comment has been minimized.
This comment has been minimized.
rejurime
Feb 9, 2017
•
Author
Contributor
Here you can see gitignore in the official repository of Dolphin Smalltalk.
https://github.com/dolphinsmalltalk/Dolphin/blob/master/.gitignore
shiftkey
reviewed
Jan 29, 2017
| @@ -1,15 +1,24 @@ | |||
| # changes file | |||
| *.changes | |||
| *.chg | |||
This comment has been minimized.
This comment has been minimized.
shiftkey
Jan 29, 2017
Member
Same thing with these extensions - can you tell me about what they represent and why they can be safely ignored? Additional resources are definitely helpful here!
This comment has been minimized.
This comment has been minimized.
rejurime
Feb 6, 2017
Author
Contributor
Represents the same as in Pharo and Squeak (.changes).
When you save something (ctrl+s) this change is add to the chg file, everything you modify is added. This file is complemented by SML and IMG/IMG7 to create the complete image, but what is important to version are the code packages (.pac or *.pax - *.cls)
shiftkey
removed
the
new template
label
Jan 29, 2017
shiftkey
changed the title
Add support for Dolphin Smalltalk
[Smalltalk] add support for Dolphin Smalltalk
Jan 29, 2017
This comment has been minimized.
This comment has been minimized.
|
Hi @shiftkey do you need more information about this changes? |
This comment has been minimized.
This comment has been minimized.
|
@rejurime no, I'm good. Thanks for working through it with me! |
rejurime commentedJun 28, 2016
Reasons for making this change:
Add support to Dolphin Smalltalk, the template only have support to Pharo and Squeak.
Links to documentation supporting these rule changes: