Skip to content

Commit 688eafd

Browse files
committedApr 9, 2019
Merge branch 'master' of github.com:HashLoad/delphi-docker
2 parents 0c9eaae + 8596a36 commit 688eafd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1376
-5669
lines changed
 

‎.gitignore

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
1+
2+
# Created by https://www.gitignore.io/api/delphi
3+
# Edit at https://www.gitignore.io/?templates=delphi
4+
5+
### Delphi ###
16
# Uncomment these types if you want even more clean repository. But be careful.
27
# It can make harm to an existing project source. Read explanations below.
38
#
49
# Resource files are binaries containing manifest, project icon and version info.
510
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
611
#*.res
7-
#
812
# Type library file (binary). In old Delphi versions it should be stored.
913
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
1014
#*.tlb
11-
#
1215
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
1316
# Uncomment this if you are not using diagrams or use newer Delphi version.
1417
#*.ddp
15-
#
1618
# Visual LiveBindings file. Added in Delphi XE2.
1719
# Uncomment this if you are not using LiveBindings Designer.
1820
#*.vlb
19-
#
2021
# Deployment Manager configuration file for your project. Added in Delphi XE2.
2122
# Uncomment this if it is not mobile development and you do not use remote debug feature.
2223
#*.deployproj
23-
#
2424
# C++ object files produced when C/C++ Output file generation is configured.
2525
# Uncomment this if you are not using external objects (zlib library for example).
2626
#*.obj
27-
#
2827

2928
# Delphi compiler-generated binaries (safe to delete)
3029
*.exe
@@ -61,9 +60,11 @@
6160
__history/
6261
__recovery/
6362
*.~*
64-
modules/
6563

6664
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
6765
*.stat
68-
*.cbk
69-
modules
66+
67+
# Boss dependency manager vendor folder https://github.com/HashLoad/boss
68+
modules/
69+
70+
# End of https://www.gitignore.io/api/delphi

‎DelphiDocker.dpk

+4-9
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,12 @@ requires
3535

3636
contains
3737
OpenToolApi.Register in 'Src\OpenToolApi\OpenToolApi.Register.pas',
38-
OpenToolApi.ToolBarItem in 'Src\OpenToolApi\OpenToolApi.ToolBarItem.pas' {ToolBarItem: TDataModule},
3938
Command.Runner in 'Src\Command\Command.Runner.pas',
4039
OpenToolApi.CommandMessage in 'Src\OpenToolApi\OpenToolApi.CommandMessage.pas',
4140
OpenToolApi.LocalMenuItem in 'Src\OpenToolApi\OpenToolApi.LocalMenuItem.pas',
42-
OpenToolApi.Events in 'Src\OpenToolApi\OpenToolApi.Events.pas',
43-
UtilityFunctions in 'Src\OpenToolApi\UtilityFunctions.pas',
44-
Command.Cmd in 'Src\Command\Command.Cmd.pas',
45-
Command.Message in 'Src\Command\Command.Message.pas',
46-
Docker.Utils in 'Src\Docker\Docker.Utils.pas',
47-
Wrapper.Docker in 'Src\Wrapper\Wrapper.Docker.pas',
48-
Wrapper.DockerCompose in 'Src\Wrapper\Wrapper.DockerCompose.pas',
49-
Docker.RunWithDocker in 'Src\Docker\Docker.RunWithDocker.pas';
41+
OpenToolApi.Tools in 'Src\OpenToolApi\OpenToolApi.Tools.pas',
42+
Docker.RunWithDocker in 'Src\Docker\Docker.RunWithDocker.pas',
43+
Constants.Version in 'Src\Constants\Constants.Version.pas',
44+
OpenToolApi.MenuItem in 'Src\OpenToolApi\OpenToolApi.MenuItem.pas';
5045

5146
end.

0 commit comments

Comments
 (0)