This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Aws sdk v2 #1730
Closed
Closed
Aws sdk v2 #1730
Changes from 3 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
96c6f3a
Added s3 storage implementation based on the aws-sdk v2.
danielwanja 8c6bf84
Specifying gem spec dependencies to use aws-sdk v2 and v1.
danielwanja c44e97d
* Fixed delete image bug.
danielwanja db13166
Refreshing headers in upload_file. This allows s3_header Proc to use …
danielwanja 982b748
* Defaulting s3 region to us-east-1.
danielwanja a4b243c
Removing use of SlowDown exception which was a v1 concept.
danielwanja 9182e1c
Fixed bug with copy_to_local_file which receives Aws::PageableRespons…
danielwanja 43f2043
Removing SlowDown reference from s3v2 spec as it a v1 concept that's …
danielwanja 1dd8b2c
adapted s3v2 spec to new region default
danielwanja 5d855d0
Fixed issue with the copy_to_local_file method for the S3v2 storage t…
danielwanja 83509a9
Fixed s3 region related specs.
danielwanja ecb853d
Added s3 storage implementation based on the aws-sdk v2.
danielwanja 7e777de
Specifying gem spec dependencies to use aws-sdk v2 and v1.
danielwanja fe92fc1
* Fixed delete image bug.
danielwanja 5edd036
Refreshing headers in upload_file. This allows s3_header Proc to use …
danielwanja 503a79b
* Defaulting s3 region to us-east-1.
danielwanja 3e2f339
Removing use of SlowDown exception which was a v1 concept.
danielwanja a86fe72
Fixed bug with copy_to_local_file which receives Aws::PageableRespons…
danielwanja 0c34c4c
Removing SlowDown reference from s3v2 spec as it a v1 concept that's …
danielwanja c5408ab
adapted s3v2 spec to new region default
danielwanja 002ab1d
Fixed issue with the copy_to_local_file method for the S3v2 storage t…
danielwanja c007a21
Fixed s3 region related specs.
danielwanja c390601
Merge remote-tracking branch 'origin/aws-sdk-v2' into aws-sdk-v2
danielwanja 220c7de
Applied many houndci recommendations:
danielwanja c774546
Applied many houndci recommendations:
danielwanja 0d719ef
Pending a test that works locally an not on travis-ci (for now). Need…
danielwanja 4f4af35
Remove pry dependency.
danielwanja File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
require "paperclip/storage/filesystem" | ||
require "paperclip/storage/fog" | ||
require "paperclip/storage/s3" | ||
require "paperclip/storage/s3v2" |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.