-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Smart CDN Signature Auth helper (#71)
* Create ruby-sdk.code-workspace * Update README.md * Update test_assembly.rb * Create smartcdn-sig.ts * wip * Wip * Create Makefile * Update smartcdn-sig.ts * Cleanup * Move to tl instance * Wip * Inline smart cdn method * Readme * More comprehensive node comparison * Make no tsx fatal for TEST_NODE_PARITY * Update ci.yml * Document test flags * Support empty input * Update ruby-sdk.code-workspace * Assert empty string param behavior * Make empty string param show up in url * Update test_smart_cdn_node_parity.rb * Harcode urls * Merge parity testing into regular suite * Retire expireIn * Remove ability to override auth keys * Fix: redundant self * Fix linting * Fixes * Validate both implementations against hardcoded URL * Update lib/transloadit.rb Co-authored-by: Robin Mehner <[email protected]> * Add flat_map. Thx @rmehner! Co-Authored-By: Robin Mehner <[email protected]> * Update transloadit.rb Co-Authored-By: Robin Mehner <[email protected]> * Ensure workspace and template can't be empty strings --------- Co-authored-by: Robin Mehner <[email protected]>
- Loading branch information
Showing
9 changed files
with
460 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,5 @@ transloadit-*.gem | |
|
||
.DS_Store | ||
env.sh | ||
|
||
# Bundle directory | ||
.env | ||
vendor/bundle/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"workbench.colorCustomizations": { | ||
"titleBar.activeForeground": "#ffffff", | ||
"titleBar.activeBackground": "#cc0000" | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.PHONY: all test fix | ||
|
||
all: fix test | ||
|
||
# Run tests | ||
test: | ||
bundle exec rake test | ||
|
||
# Fix code formatting | ||
fix: | ||
bundle exec standardrb --fix | ||
|
||
# Install dependencies | ||
install: | ||
bundle install | ||
|
||
# Run both fix and test | ||
check: fix test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.