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
a3bfeb11
Commit
a3bfeb11
authored
Dec 14, 2010
by
Matthew Mongeau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
@klass is no longer used in rake task. obtain_class should return the class name.
parent
e246cfbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
lib/tasks/paperclip.rake
+9
-7
No files found.
lib/tasks/paperclip.rake
View file @
a3bfeb11
def
obtain_class
class_name
=
ENV
[
'CLASS'
]
||
ENV
[
'class'
]
raise
"Must specify CLASS"
unless
class_name
class_name
end
def
obtain_attachments
def
obtain_attachments
(
klass
)
klass
=
Object
.
const_get
(
klass
.
to_s
)
name
=
ENV
[
'ATTACHMENT'
]
||
ENV
[
'attachment'
]
raise
"Class
#{
@klass
.
name
}
has no attachments specified"
unless
@
klass
.
respond_to?
(
:attachment_definitions
)
if
!
name
.
blank?
&&
@
klass
.
attachment_definitions
.
keys
.
include?
(
name
)
raise
"Class
#{
klass
.
name
}
has no attachments specified"
unless
klass
.
respond_to?
(
:attachment_definitions
)
if
!
name
.
blank?
&&
klass
.
attachment_definitions
.
keys
.
include?
(
name
)
[
name
]
else
@
klass
.
attachment_definitions
.
keys
klass
.
attachment_definitions
.
keys
end
end
...
...
@@ -21,8 +23,8 @@ namespace :paperclip do
desc
"Regenerates thumbnails for a given CLASS (and optional ATTACHMENT)."
task
:thumbnails
=>
:environment
do
errors
=
[]
names
=
obtain_attachments
klass
=
obtain_class
names
=
obtain_attachments
(
klass
)
names
.
each
do
|
name
|
Paperclip
.
each_instance_with_attachment
(
klass
,
name
)
do
|
instance
|
result
=
instance
.
send
(
name
).
reprocess!
...
...
@@ -34,8 +36,8 @@ namespace :paperclip do
desc
"Regenerates content_type/size metadata for a given CLASS (and optional ATTACHMENT)."
task
:metadata
=>
:environment
do
names
=
obtain_attachments
klass
=
obtain_class
names
=
obtain_attachments
(
klass
)
names
.
each
do
|
name
|
Paperclip
.
each_instance_with_attachment
(
klass
,
name
)
do
|
instance
|
if
file
=
instance
.
send
(
name
).
to_file
...
...
@@ -53,8 +55,8 @@ namespace :paperclip do
desc
"Cleans out invalid attachments. Useful after you've added new validations."
task
:clean
=>
:environment
do
names
=
obtain_attachments
klass
=
obtain_class
names
=
obtain_attachments
(
klass
)
names
.
each
do
|
name
|
Paperclip
.
each_instance_with_attachment
(
klass
,
name
)
do
|
instance
|
instance
.
send
(
name
).
send
(
:validate
)
...
...
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