delayed_paperclip 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +15 -3
- data/VERSION +1 -1
- data/delayed_paperclip.gemspec +1 -1
- data/lib/delayed_paperclip.rb +2 -0
- metadata +1 -1
data/README.textile
CHANGED
@@ -10,13 +10,25 @@ The most common use case for Paperclip is to easily attach image files to Active
|
|
10
10
|
|
11
11
|
I'm sure that everyone knows this, this gem just makes it easy to do.
|
12
12
|
|
13
|
-
h2.
|
13
|
+
h2. Installation
|
14
14
|
|
15
|
-
|
15
|
+
Install the gem:
|
16
|
+
|
17
|
+
<pre><code>sudo gem install delayed_paperclip</code></pre>
|
18
|
+
|
19
|
+
Add it to your environment.rb:
|
20
|
+
|
21
|
+
<pre><code>config.gem 'delayed_paperclip'</code></pre>
|
22
|
+
|
23
|
+
Or, even better, to your Gemfile:
|
24
|
+
|
25
|
+
<pre><code>source "http://gemcutter.org"
|
26
|
+
gem 'delayed_paperclip'
|
27
|
+
</code></pre>
|
16
28
|
|
17
29
|
Dependencies:
|
18
30
|
* Paperclip
|
19
|
-
*
|
31
|
+
* delayed_job
|
20
32
|
|
21
33
|
h2. Usage
|
22
34
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0
|
1
|
+
0.1.0
|
data/delayed_paperclip.gemspec
CHANGED
data/lib/delayed_paperclip.rb
CHANGED