Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paperclip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paperclip
Commits
aebbb7c4
Commit
aebbb7c4
authored
Nov 12, 2008
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
S3 uploads should have their content types set
parent
f756dd1d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
lib/paperclip/storage.rb
+1
-1
test/storage_test.rb
+1
-1
No files found.
lib/paperclip/storage.rb
View file @
aebbb7c4
...
...
@@ -165,7 +165,7 @@ module Paperclip
logger
.
info
(
"[paperclip] ->
#{
path
(
style
)
}
"
)
key
=
s3_bucket
.
key
(
path
(
style
))
key
.
data
=
file
key
.
put
(
nil
,
@s3_permissions
)
key
.
put
(
nil
,
@s3_permissions
,
{
'Content-type'
=>
instance_read
(
:content_type
)}
)
rescue
RightAws
::
AwsError
=>
e
raise
end
...
...
test/storage_test.rb
View file @
aebbb7c4
...
...
@@ -97,7 +97,7 @@ class StorageTest < Test::Unit::TestCase
@key_mock
=
stub
@bucket_mock
.
expects
(
:key
).
returns
(
@key_mock
)
@key_mock
.
expects
(
:data
=
)
@key_mock
.
expects
(
:put
)
@key_mock
.
expects
(
:put
)
.
with
(
nil
,
'public-read'
,
'Content-type'
=>
'image/png'
)
@dummy
.
save
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment