Skip to content

Commit 04185c6

Browse files
committed
Import updated authenticators
1 parent bcac0fb commit 04185c6

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

build/export-auth.vbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Modules = Array(_
3131
"OAuth2Authenticator.cls", _
3232
"GoogleAuthenticator.cls", _
3333
"TwitterAuthenticator.cls", _
34+
"FacebookAuthenticator.cls", _
3435
"DigestAuthenticator.cls" _
3536
)
3637

build/import.vbs

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,27 @@ Folder = ".\src\"
3838
' Overwrite modules and folder if 2nd argument is given'
3939
If Args.Length > 1 Then
4040
If Args(1) = "specs" Then
41-
Modules = Array("RestClientAsyncSpecs.bas", "RestClientBaseSpecs.bas", "RestClientSpecs.bas", "RestHelpersSpecs.bas", "RestRequestSpecs.bas")
41+
Modules = Array(_
42+
"RestClientAsyncSpecs.bas", _
43+
"RestClientBaseSpecs.bas", _
44+
"RestClientSpecs.bas", _
45+
"RestHelpersSpecs.bas", _
46+
"RestRequestSpecs.bas", _
47+
"DigestAuthenticatorSpecs.bas" _
48+
)
4249
Folder = ".\specs\"
4350
End If
4451
If Args(1) = "auth" Then
45-
Modules = Array("EmptyAuthenticator.cls", "FacebookAuthenticator.cls", "GoogleAuthenticator.cls", "HttpBasicAuthenticator.cls", "OAuth1Authenticator.cls", "OAuth2Authenticator.cls", "TwitterAuthenticator.cls", "DigestAuthenticator.cls")
52+
Modules = Array(_
53+
"EmptyAuthenticator.cls", _
54+
"HttpBasicAuthenticator.cls", _
55+
"OAuth1Authenticator.cls", _
56+
"OAuth2Authenticator.cls", _
57+
"GoogleAuthenticator.cls", _
58+
"TwitterAuthenticator.cls", _
59+
"FacebookAuthenticator.cls", _
60+
"DigestAuthenticator.cls" _
61+
)
4662
Folder = ".\authenticators\"
4763
End If
4864
End If

examples/Excel-REST - Example.xlsm

10.9 KB
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-20 KB
Binary file not shown.

0 commit comments

Comments
 (0)