Skip to content

Commit

Permalink
Import updated authenticators
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Mar 23, 2014
1 parent bcac0fb commit 04185c6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
1 change: 1 addition & 0 deletions build/export-auth.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Modules = Array(_
"OAuth2Authenticator.cls", _
"GoogleAuthenticator.cls", _
"TwitterAuthenticator.cls", _
"FacebookAuthenticator.cls", _
"DigestAuthenticator.cls" _
)

Expand Down
20 changes: 18 additions & 2 deletions build/import.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,27 @@ Folder = ".\src\"
' Overwrite modules and folder if 2nd argument is given'
If Args.Length > 1 Then
If Args(1) = "specs" Then
Modules = Array("RestClientAsyncSpecs.bas", "RestClientBaseSpecs.bas", "RestClientSpecs.bas", "RestHelpersSpecs.bas", "RestRequestSpecs.bas")
Modules = Array(_
"RestClientAsyncSpecs.bas", _
"RestClientBaseSpecs.bas", _
"RestClientSpecs.bas", _
"RestHelpersSpecs.bas", _
"RestRequestSpecs.bas", _
"DigestAuthenticatorSpecs.bas" _
)
Folder = ".\specs\"
End If
If Args(1) = "auth" Then
Modules = Array("EmptyAuthenticator.cls", "FacebookAuthenticator.cls", "GoogleAuthenticator.cls", "HttpBasicAuthenticator.cls", "OAuth1Authenticator.cls", "OAuth2Authenticator.cls", "TwitterAuthenticator.cls", "DigestAuthenticator.cls")
Modules = Array(_
"EmptyAuthenticator.cls", _
"HttpBasicAuthenticator.cls", _
"OAuth1Authenticator.cls", _
"OAuth2Authenticator.cls", _
"GoogleAuthenticator.cls", _
"TwitterAuthenticator.cls", _
"FacebookAuthenticator.cls", _
"DigestAuthenticator.cls" _
)
Folder = ".\authenticators\"
End If
End If
Expand Down
Binary file modified examples/Excel-REST - Example.xlsm
Binary file not shown.
Binary file modified specs/Excel-REST - Specs.xlsm
Binary file not shown.

0 comments on commit 04185c6

Please sign in to comment.