Skip to content

Commit 96216aa

Browse files
First commit
1 parent 556adef commit 96216aa

6 files changed

Lines changed: 728 additions & 43 deletions

File tree

.gitignore

Lines changed: 15 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,13 @@
1-
# Uncomment these types if you want even more clean repository. But be careful.
2-
# It can make harm to an existing project source. Read explanations below.
3-
#
4-
# Resource files are binaries containing manifest, project icon and version info.
5-
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6-
#*.res
7-
#
8-
# Type library file (binary). In old Delphi versions it should be stored.
9-
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10-
#*.tlb
11-
#
12-
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13-
# Uncomment this if you are not using diagrams or use newer Delphi version.
14-
#*.ddp
15-
#
16-
# Visual LiveBindings file. Added in Delphi XE2.
17-
# Uncomment this if you are not using LiveBindings Designer.
18-
#*.vlb
19-
#
20-
# Deployment Manager configuration file for your project. Added in Delphi XE2.
21-
# Uncomment this if it is not mobile development and you do not use remote debug feature.
22-
#*.deployproj
23-
#
24-
# C++ object files produced when C/C++ Output file generation is configured.
25-
# Uncomment this if you are not using external objects (zlib library for example).
26-
#*.obj
27-
#
28-
29-
# Delphi compiler-generated binaries (safe to delete)
1+
modules/
2+
dist/
3+
static/
4+
**/Win32/
5+
**/Win64/
6+
**/Linux64/
7+
**/__history/
8+
**/__recovery/
9+
src/*.~*
10+
*.res
3011
*.exe
3112
*.dll
3213
*.bpl
@@ -44,23 +25,14 @@
4425
*.a
4526
*.o
4627
*.ocx
47-
48-
# Delphi autogenerated files (duplicated info)
49-
*.cfg
50-
*.hpp
51-
*Resource.rc
52-
53-
# Delphi local files (user-specific info)
5428
*.local
5529
*.identcache
5630
*.projdata
5731
*.tvsconfig
5832
*.dsk
59-
60-
# Delphi history and backups
61-
__history/
62-
__recovery/
33+
*.dcu
34+
*.exe
35+
*.so
6336
*.~*
64-
65-
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
66-
*.stat
37+
*.a
38+
*.stat

boss-lock.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"hash": "d41d8cd98f00b204e9800998ecf8427e",
3+
"updated": "2019-07-15T22:22:24.4542686-03:00",
4+
"installedModules": {
5+
"github.com/hashload/horse": {
6+
"name": "horse",
7+
"version": "v1.6.6",
8+
"hash": "38be150437fc3573576d87ad6a3f6b56",
9+
"artifacts": {
10+
"bin": [],
11+
"dcp": [],
12+
"dcu": [],
13+
"bpl": []
14+
},
15+
"failed": false,
16+
"changed": false
17+
}
18+
}
19+
}

boss.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "horse-basic-auth",
3+
"description": "",
4+
"version": "1.0.0",
5+
"homepage": "",
6+
"mainsrc": "/src",
7+
"projects": [],
8+
"dependencies": {
9+
"github.com/hashload/horse": "^v1.6.6"
10+
}
11+
}

horse_basic_auth.dpk

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package horse_basic_auth;
2+
3+
{$R *.res}
4+
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5+
{$ALIGN 8}
6+
{$ASSERTIONS ON}
7+
{$BOOLEVAL OFF}
8+
{$DEBUGINFO OFF}
9+
{$EXTENDEDSYNTAX ON}
10+
{$IMPORTEDDATA ON}
11+
{$IOCHECKS ON}
12+
{$LOCALSYMBOLS ON}
13+
{$LONGSTRINGS ON}
14+
{$OPENSTRINGS ON}
15+
{$OPTIMIZATION OFF}
16+
{$OVERFLOWCHECKS OFF}
17+
{$RANGECHECKS OFF}
18+
{$REFERENCEINFO ON}
19+
{$SAFEDIVIDE OFF}
20+
{$STACKFRAMES ON}
21+
{$TYPEDADDRESS OFF}
22+
{$VARSTRINGCHECKS ON}
23+
{$WRITEABLECONST OFF}
24+
{$MINENUMSIZE 1}
25+
{$IMAGEBASE $400000}
26+
{$DEFINE DEBUG}
27+
{$ENDIF IMPLICITBUILDING}
28+
{$RUNONLY}
29+
{$IMPLICITBUILD ON}
30+
31+
requires
32+
rtl;
33+
34+
contains
35+
Horse.BasicAuthentication in 'src\Horse.BasicAuthentication.pas';
36+
37+
end.
38+

0 commit comments

Comments
 (0)