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
09767ab1
Commit
09767ab1
authored
Feb 17, 2009
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reversed commit
87783829
, removed :relative_url_root for now
parent
28a83058
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
56 deletions
+18
-56
lib/paperclip/attachment.rb
+18
-25
test/attachment_test.rb
+0
-30
test/helper.rb
+0
-1
No files found.
lib/paperclip/attachment.rb
View file @
09767ab1
...
...
@@ -191,31 +191,24 @@ module Paperclip
# necessary.
def
self
.
interpolations
@interpolations
||=
{
:rails_root
=>
lambda
{
|
attachment
,
style
|
RAILS_ROOT
},
:rails_env
=>
lambda
{
|
attachment
,
style
|
RAILS_ENV
},
:class
=>
lambda
do
|
attachment
,
style
|
attachment
.
instance
.
class
.
name
.
underscore
.
pluralize
end
,
:basename
=>
lambda
do
|
attachment
,
style
|
attachment
.
original_filename
.
gsub
(
/
#{
File
.
extname
(
attachment
.
original_filename
)
}
$/
,
""
)
end
,
:extension
=>
lambda
do
|
attachment
,
style
|
((
style
=
attachment
.
styles
[
style
])
&&
style
[
:format
])
||
File
.
extname
(
attachment
.
original_filename
).
gsub
(
/^\.+/
,
""
)
end
,
:id
=>
lambda
{
|
attachment
,
style
|
attachment
.
instance
.
id
},
:id_partition
=>
lambda
do
|
attachment
,
style
|
(
"%09d"
%
attachment
.
instance
.
id
).
scan
(
/\d{3}/
).
join
(
"/"
)
end
,
:attachment
=>
lambda
{
|
attachment
,
style
|
attachment
.
name
.
to_s
.
downcase
.
pluralize
},
:style
=>
lambda
{
|
attachment
,
style
|
style
||
attachment
.
default_style
},
:relative_root
=>
lambda
do
|
attachment
,
style
|
if
ActionController
::
AbstractRequest
.
respond_to?
(
:relative_url_root
)
ActionController
::
AbstractRequest
.
relative_url_root
elsif
ActionController
::
Base
.
respond_to?
(
:relative_url_root
)
ActionController
::
Base
.
relative_url_root
end
end
:rails_root
=>
lambda
{
|
attachment
,
style
|
RAILS_ROOT
},
:rails_env
=>
lambda
{
|
attachment
,
style
|
RAILS_ENV
},
:class
=>
lambda
do
|
attachment
,
style
|
attachment
.
instance
.
class
.
name
.
underscore
.
pluralize
end
,
:basename
=>
lambda
do
|
attachment
,
style
|
attachment
.
original_filename
.
gsub
(
/
#{
File
.
extname
(
attachment
.
original_filename
)
}
$/
,
""
)
end
,
:extension
=>
lambda
do
|
attachment
,
style
|
((
style
=
attachment
.
styles
[
style
])
&&
style
[
:format
])
||
File
.
extname
(
attachment
.
original_filename
).
gsub
(
/^\.+/
,
""
)
end
,
:id
=>
lambda
{
|
attachment
,
style
|
attachment
.
instance
.
id
},
:id_partition
=>
lambda
do
|
attachment
,
style
|
(
"%09d"
%
attachment
.
instance
.
id
).
scan
(
/\d{3}/
).
join
(
"/"
)
end
,
:attachment
=>
lambda
{
|
attachment
,
style
|
attachment
.
name
.
to_s
.
downcase
.
pluralize
},
:style
=>
lambda
{
|
attachment
,
style
|
style
||
attachment
.
default_style
},
}
end
...
...
test/attachment_test.rb
View file @
09767ab1
...
...
@@ -106,36 +106,6 @@ class AttachmentTest < Test::Unit::TestCase
end
end
context
"An attachment with a :relative_root interpolation"
do
setup
do
rebuild_model
:url
=>
":relative_root/:id.png"
@dummy
=
Dummy
.
new
@dummy
.
stubs
(
:id
).
returns
(
1024
)
@dummy
.
avatar
=
StringIO
.
new
(
"."
)
ActionController
::
Base
.
stubs
(
:respond_to?
).
with
(
:relative_url_root
).
returns
(
false
)
ActionController
::
Base
.
stubs
(
:relative_url_root
).
returns
(
"/base"
)
ActionController
::
AbstractRequest
.
stubs
(
:respond_to?
).
with
(
:relative_url_root
).
returns
(
false
)
ActionController
::
AbstractRequest
.
stubs
(
:relative_url_root
).
returns
(
"/request"
)
end
should
"return the proper path when the path is nil"
do
assert_equal
"/1024.png"
,
@dummy
.
avatar
.
url
(
:original
,
false
)
end
should
"return the proper path when using Rails < 2.1"
do
ActionController
::
AbstractRequest
.
expects
(
:respond_to?
).
with
(
:relative_url_root
).
returns
(
true
)
ActionController
::
AbstractRequest
.
expects
(
:relative_url_root
).
returns
(
"/request"
)
assert_equal
"/request/1024.png"
,
@dummy
.
avatar
.
url
(
:original
,
false
)
end
should
"return the proper path when using Rails >= 2.1"
do
ActionController
::
Base
.
expects
(
:respond_to?
).
with
(
:relative_url_root
).
returns
(
true
)
ActionController
::
Base
.
expects
(
:relative_url_root
).
returns
(
"/base"
)
assert_equal
"/base/1024.png"
,
@dummy
.
avatar
.
url
(
:original
,
false
)
end
end
context
"An attachment with :convert_options"
do
setup
do
rebuild_model
:styles
=>
{
...
...
test/helper.rb
View file @
09767ab1
...
...
@@ -9,7 +9,6 @@ gem 'sqlite3-ruby'
require
'active_record'
require
'active_support'
require
'action_controller'
begin
require
'ruby-debug'
rescue
LoadError
...
...
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