delayed_paperclip 2.6.1 → 2.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +3 -9
- data/Appraisals +4 -8
- data/Gemfile +1 -9
- data/README.textile +19 -3
- data/Rakefile +1 -1
- data/delayed_paperclip.gemspec +8 -3
- data/gemfiles/rails3_1.gemfile +1 -4
- data/gemfiles/rails3_1.gemfile.lock +70 -68
- data/gemfiles/rails3_2.gemfile +1 -4
- data/gemfiles/rails3_2.gemfile.lock +72 -70
- data/gemfiles/rails4.gemfile +7 -0
- data/gemfiles/rails4.gemfile.lock +157 -0
- data/lib/delayed_paperclip.rb +6 -3
- data/lib/delayed_paperclip/attachment.rb +17 -4
- data/lib/delayed_paperclip/jobs/delayed_job.rb +5 -3
- data/lib/delayed_paperclip/url_generator.rb +22 -4
- data/lib/delayed_paperclip/version.rb +1 -1
- data/spec/delayed_paperclip/attachment_spec.rb +67 -6
- data/spec/delayed_paperclip/class_methods_spec.rb +8 -5
- data/spec/delayed_paperclip/url_generator_spec.rb +36 -5
- data/spec/delayed_paperclip_spec.rb +6 -3
- data/spec/spec_helper.rb +16 -5
- data/test/base_delayed_paperclip_test.rb +14 -0
- data/test/test_helper.rb +13 -2
- metadata +82 -12
- data/gemfiles/paperclip3_5.gemfile +0 -11
- data/gemfiles/paperclip3_5.gemfile.lock +0 -160
- data/gemfiles/rails3.gemfile +0 -10
- data/gemfiles/rails3.gemfile.lock +0 -151
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39e783ff8099e58b8da9162334e1d129f0103030
|
4
|
+
data.tar.gz: 07f048dfc6d2f630972d05e1884da1877885b3d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e54b03d471c7f99d997bc61e0dba8b3cb3ad198ade0876d411152c5fe7324ce08fe121b4883da69f5dc29b8a6cbf985009e24c4142966d175bc609d1021a6f5
|
7
|
+
data.tar.gz: a87ba2994e205635505b28859c58147ab7af689b3ec146421b4f6a224e903b689a313cfb443d8ebc188b8279d852dd0aa035b2a6d4bcde8157a6a7e57ccc548d
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.0-p195
|
1
|
+
2.0.0-p195
|
data/.travis.yml
CHANGED
@@ -1,27 +1,21 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
- 2.
|
3
|
+
- 2.1.0
|
4
4
|
- 1.9.3
|
5
5
|
- rbx-19mode
|
6
|
-
|
7
6
|
matrix:
|
8
7
|
allow_failures:
|
9
8
|
- rvm: rbx-19mode
|
10
|
-
|
11
9
|
services:
|
12
10
|
- redis
|
13
|
-
|
14
|
-
script:
|
15
|
-
- bundle exec rake clean test spec
|
16
|
-
|
11
|
+
script: "bundle exec rake clean test spec"
|
17
12
|
notifications:
|
18
13
|
email:
|
19
14
|
- james@jamesrgifford.com
|
20
15
|
- scott@artsicle.com
|
21
|
-
|
22
16
|
gemfile:
|
23
|
-
- gemfiles/rails3.gemfile
|
24
17
|
- gemfiles/rails3_1.gemfile
|
25
18
|
- gemfiles/rails3_2.gemfile
|
19
|
+
- gemfiles/rails4.gemfile
|
26
20
|
|
27
21
|
|
data/Appraisals
CHANGED
@@ -1,15 +1,11 @@
|
|
1
|
-
appraise "rails3" do
|
2
|
-
gem "rails", "~> 3.0.10"
|
3
|
-
end
|
4
|
-
|
5
1
|
appraise "rails3_1" do
|
6
|
-
gem "rails", "~> 3.1.
|
2
|
+
gem "rails", "~> 3.1.12"
|
7
3
|
end
|
8
4
|
|
9
5
|
appraise "rails3_2" do
|
10
|
-
gem "rails", "~> 3.2.
|
6
|
+
gem "rails", "~> 3.2.17"
|
11
7
|
end
|
12
8
|
|
13
|
-
appraise "
|
14
|
-
gem "
|
9
|
+
appraise "rails4" do
|
10
|
+
gem "rails", "~> 4.0.3"
|
15
11
|
end
|
data/Gemfile
CHANGED
data/README.textile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
h1. Delayed::Paperclip !https://travis-ci.org/jrgifford/delayed_paperclip.png?branch=master!:https://travis-ci.org/jrgifford/delayed_paperclip "!https://codeclimate.com/github/jrgifford/delayed_paperclip.png!":https://codeclimate.com/github/jrgifford/delayed_paperclip
|
2
2
|
|
3
|
-
Delayed_paperclip lets you process your "Paperclip":http://github.com/thoughtbot/paperclip attachments in a background task with "delayed_job":http://github.com/tobi/delayed_job or "
|
3
|
+
Delayed_paperclip lets you process your "Paperclip":http://github.com/thoughtbot/paperclip attachments in a background task with "delayed_job":http://github.com/tobi/delayed_job, "Resque":https://github.com/resque/resque or "Sidekiq":http://github.com/mperham/sidekiq.
|
4
4
|
|
5
5
|
h2. Why?
|
6
6
|
|
@@ -23,7 +23,7 @@ gem 'delayed_paperclip'
|
|
23
23
|
|
24
24
|
Dependencies:
|
25
25
|
* Paperclip
|
26
|
-
* DJ or
|
26
|
+
* DJ, Resque or Sidekiq
|
27
27
|
|
28
28
|
h2. Usage
|
29
29
|
|
@@ -43,12 +43,16 @@ To select between using Resque or Delayed::Job, just install and configure your
|
|
43
43
|
|
44
44
|
h3. Resque
|
45
45
|
|
46
|
-
Make sure that you have "Resque":
|
46
|
+
Make sure that you have "Resque":https://github.com/resque/resque up and running. The jobs will be dispatched to the <code>:paperclip</code> queue, so you can correctly dispatch your worker. Configure resque and your workers exactly as you would otherwise.
|
47
47
|
|
48
48
|
h3. DJ
|
49
49
|
|
50
50
|
Just make sure that you have DJ up and running.
|
51
51
|
|
52
|
+
h3. Sidekiq
|
53
|
+
|
54
|
+
Make sure that "Sidekiq":http://github.com/mperham/sidekiq is running and listening to the <code>paperclip</code> queue, either by adding it to your <code>sidekiq.yml</code> config file under <code>- queues:</code> or by passing the command line argument <code>-q paperclip</code> to Sidekiq.
|
55
|
+
|
52
56
|
h3. Displaying images during processing
|
53
57
|
|
54
58
|
In the default setup, when you upload an image for the first time and try to display it before the job has been completed, Paperclip will be none the wiser and output the url of the image which is yet to be processed, which will result in a broken image link being displayed on the page.
|
@@ -110,6 +114,18 @@ This is useful if you don't want the background job to reprocess all styles.
|
|
110
114
|
end
|
111
115
|
</code></pre>
|
112
116
|
|
117
|
+
h4. Split processing
|
118
|
+
|
119
|
+
You can process some styles in the foreground and some in the background by setting only_process on both has_attached_file and process_in_background.
|
120
|
+
|
121
|
+
<pre><code>
|
122
|
+
class User < ActiveRecord::Base
|
123
|
+
has_attached_file :avatar, :styles => { :small => "25x25#", :medium => "50x50x" }, :only_process => [:small]
|
124
|
+
|
125
|
+
process_in_background :avatar, :only_process => [:medium]
|
126
|
+
end
|
127
|
+
</code></pre>
|
128
|
+
|
113
129
|
h4. Reprocess Without Delay
|
114
130
|
|
115
131
|
This is useful if you don't want the background job. It accepts individual styles to. Take note, normal `reprocess!` does not accept
|
data/Rakefile
CHANGED
data/delayed_paperclip.gemspec
CHANGED
@@ -7,18 +7,23 @@ Gem::Specification.new do |s|
|
|
7
7
|
|
8
8
|
s.authors = ["Jesse Storimer", "Bert Goethals", "James Gifford", "Scott Carleton"]
|
9
9
|
s.summary = %q{Process your Paperclip attachments in the background.}
|
10
|
-
s.description = %q{Process your Paperclip attachments in the background with
|
11
|
-
s.email = %
|
10
|
+
s.description = %q{Process your Paperclip attachments in the background with DelayedJob, Resque, Sidekiq or your own processor.}
|
11
|
+
s.email = %w{james@jamesrgifford.com scott@artsicle.com}
|
12
12
|
s.homepage = %q{http://github.com/jrgifford/delayed_paperclip}
|
13
13
|
|
14
|
-
s.add_dependency 'paperclip', [">= 3.3
|
14
|
+
s.add_dependency 'paperclip', [">= 3.3"]
|
15
15
|
|
16
16
|
s.add_development_dependency 'mocha'
|
17
17
|
s.add_development_dependency "rspec"
|
18
18
|
s.add_development_dependency 'sqlite3'
|
19
19
|
s.add_development_dependency 'delayed_job'
|
20
|
+
s.add_development_dependency 'delayed_job_active_record'
|
20
21
|
s.add_development_dependency 'resque'
|
21
22
|
s.add_development_dependency 'sidekiq'
|
23
|
+
s.add_development_dependency 'appraisal'
|
24
|
+
s.add_development_dependency 'rake'
|
25
|
+
s.add_development_dependency 'bundler'
|
26
|
+
s.add_development_dependency 'railties'
|
22
27
|
|
23
28
|
s.files = `git ls-files`.split("\n")
|
24
29
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
data/gemfiles/rails3_1.gemfile
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
delayed_paperclip (2.
|
5
|
-
paperclip (>= 3.3
|
4
|
+
delayed_paperclip (2.7.0)
|
5
|
+
paperclip (>= 3.3)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: http://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionmailer (3.1.
|
11
|
-
actionpack (= 3.1.
|
12
|
-
mail (~> 2.
|
13
|
-
actionpack (3.1.
|
14
|
-
activemodel (= 3.1.
|
15
|
-
activesupport (= 3.1.
|
10
|
+
actionmailer (3.1.12)
|
11
|
+
actionpack (= 3.1.12)
|
12
|
+
mail (~> 2.4.4)
|
13
|
+
actionpack (3.1.12)
|
14
|
+
activemodel (= 3.1.12)
|
15
|
+
activesupport (= 3.1.12)
|
16
16
|
builder (~> 3.0.0)
|
17
17
|
erubis (~> 2.7.0)
|
18
18
|
i18n (~> 0.6)
|
@@ -21,91 +21,91 @@ GEM
|
|
21
21
|
rack-mount (~> 0.8.2)
|
22
22
|
rack-test (~> 0.6.1)
|
23
23
|
sprockets (~> 2.0.4)
|
24
|
-
activemodel (3.1.
|
25
|
-
activesupport (= 3.1.
|
24
|
+
activemodel (3.1.12)
|
25
|
+
activesupport (= 3.1.12)
|
26
26
|
builder (~> 3.0.0)
|
27
27
|
i18n (~> 0.6)
|
28
|
-
activerecord (3.1.
|
29
|
-
activemodel (= 3.1.
|
30
|
-
activesupport (= 3.1.
|
28
|
+
activerecord (3.1.12)
|
29
|
+
activemodel (= 3.1.12)
|
30
|
+
activesupport (= 3.1.12)
|
31
31
|
arel (~> 2.2.3)
|
32
32
|
tzinfo (~> 0.3.29)
|
33
|
-
activeresource (3.1.
|
34
|
-
activemodel (= 3.1.
|
35
|
-
activesupport (= 3.1.
|
36
|
-
activesupport (3.1.
|
37
|
-
multi_json (
|
33
|
+
activeresource (3.1.12)
|
34
|
+
activemodel (= 3.1.12)
|
35
|
+
activesupport (= 3.1.12)
|
36
|
+
activesupport (3.1.12)
|
37
|
+
multi_json (~> 1.0)
|
38
38
|
appraisal (0.5.2)
|
39
39
|
bundler
|
40
40
|
rake
|
41
41
|
arel (2.2.3)
|
42
42
|
builder (3.0.4)
|
43
|
-
celluloid (0.
|
44
|
-
timers (
|
43
|
+
celluloid (0.15.2)
|
44
|
+
timers (~> 1.1.0)
|
45
45
|
climate_control (0.0.3)
|
46
46
|
activesupport (>= 3.0)
|
47
|
-
cocaine (0.5.
|
47
|
+
cocaine (0.5.3)
|
48
48
|
climate_control (>= 0.0.3, < 1.0)
|
49
|
-
connection_pool (1.
|
50
|
-
delayed_job (
|
51
|
-
activesupport (
|
52
|
-
delayed_job_active_record (0.
|
53
|
-
activerecord (>=
|
54
|
-
delayed_job (
|
55
|
-
diff-lcs (1.2.
|
49
|
+
connection_pool (1.2.0)
|
50
|
+
delayed_job (4.0.0)
|
51
|
+
activesupport (>= 3.0, < 4.1)
|
52
|
+
delayed_job_active_record (4.0.0)
|
53
|
+
activerecord (>= 3.0, < 4.1)
|
54
|
+
delayed_job (>= 3.0, < 4.1)
|
55
|
+
diff-lcs (1.2.5)
|
56
56
|
erubis (2.7.0)
|
57
|
-
hike (1.2.
|
58
|
-
i18n (0.6.
|
59
|
-
json (1.8.
|
60
|
-
mail (2.
|
57
|
+
hike (1.2.3)
|
58
|
+
i18n (0.6.9)
|
59
|
+
json (1.8.1)
|
60
|
+
mail (2.4.4)
|
61
61
|
i18n (>= 0.4.0)
|
62
62
|
mime-types (~> 1.16)
|
63
63
|
treetop (~> 1.4.8)
|
64
|
-
metaclass (0.0.
|
65
|
-
mime-types (1.
|
66
|
-
mocha (0.
|
64
|
+
metaclass (0.0.3)
|
65
|
+
mime-types (1.25.1)
|
66
|
+
mocha (1.0.0)
|
67
67
|
metaclass (~> 0.0.1)
|
68
68
|
mono_logger (1.1.0)
|
69
|
-
multi_json (1.
|
70
|
-
paperclip (
|
69
|
+
multi_json (1.8.4)
|
70
|
+
paperclip (4.1.0)
|
71
71
|
activemodel (>= 3.0.0)
|
72
72
|
activesupport (>= 3.0.0)
|
73
|
-
cocaine (~> 0.5.
|
73
|
+
cocaine (~> 0.5.3)
|
74
74
|
mime-types
|
75
|
-
polyglot (0.3.
|
76
|
-
rack (1.3.
|
75
|
+
polyglot (0.3.4)
|
76
|
+
rack (1.3.10)
|
77
77
|
rack-cache (1.2)
|
78
78
|
rack (>= 0.4)
|
79
79
|
rack-mount (0.8.3)
|
80
80
|
rack (>= 1.0.0)
|
81
|
-
rack-protection (1.5.
|
81
|
+
rack-protection (1.5.2)
|
82
82
|
rack
|
83
83
|
rack-ssl (1.3.3)
|
84
84
|
rack
|
85
85
|
rack-test (0.6.2)
|
86
86
|
rack (>= 1.0)
|
87
|
-
rails (3.1.
|
88
|
-
actionmailer (= 3.1.
|
89
|
-
actionpack (= 3.1.
|
90
|
-
activerecord (= 3.1.
|
91
|
-
activeresource (= 3.1.
|
92
|
-
activesupport (= 3.1.
|
87
|
+
rails (3.1.12)
|
88
|
+
actionmailer (= 3.1.12)
|
89
|
+
actionpack (= 3.1.12)
|
90
|
+
activerecord (= 3.1.12)
|
91
|
+
activeresource (= 3.1.12)
|
92
|
+
activesupport (= 3.1.12)
|
93
93
|
bundler (~> 1.0)
|
94
|
-
railties (= 3.1.
|
95
|
-
railties (3.1.
|
96
|
-
actionpack (= 3.1.
|
97
|
-
activesupport (= 3.1.
|
94
|
+
railties (= 3.1.12)
|
95
|
+
railties (3.1.12)
|
96
|
+
actionpack (= 3.1.12)
|
97
|
+
activesupport (= 3.1.12)
|
98
98
|
rack-ssl (~> 1.3.2)
|
99
99
|
rake (>= 0.8.7)
|
100
100
|
rdoc (~> 3.4)
|
101
101
|
thor (~> 0.14.6)
|
102
|
-
rake (10.
|
102
|
+
rake (10.1.1)
|
103
103
|
rdoc (3.12.2)
|
104
104
|
json (~> 1.4)
|
105
|
-
redis (3.0.
|
106
|
-
redis-namespace (1.
|
107
|
-
redis (~> 3.0.
|
108
|
-
resque (1.
|
105
|
+
redis (3.0.7)
|
106
|
+
redis-namespace (1.4.1)
|
107
|
+
redis (~> 3.0.4)
|
108
|
+
resque (1.25.1)
|
109
109
|
mono_logger (~> 1.0)
|
110
110
|
multi_json (~> 1.0)
|
111
111
|
redis-namespace (~> 1.2)
|
@@ -115,16 +115,16 @@ GEM
|
|
115
115
|
rspec-core (~> 2.14.0)
|
116
116
|
rspec-expectations (~> 2.14.0)
|
117
117
|
rspec-mocks (~> 2.14.0)
|
118
|
-
rspec-core (2.14.
|
119
|
-
rspec-expectations (2.14.
|
118
|
+
rspec-core (2.14.7)
|
119
|
+
rspec-expectations (2.14.5)
|
120
120
|
diff-lcs (>= 1.1.3, < 2.0)
|
121
|
-
rspec-mocks (2.14.
|
122
|
-
sidekiq (2.
|
123
|
-
celluloid (>= 0.
|
121
|
+
rspec-mocks (2.14.5)
|
122
|
+
sidekiq (2.17.6)
|
123
|
+
celluloid (>= 0.15.2)
|
124
124
|
connection_pool (>= 1.0.0)
|
125
125
|
json
|
126
|
-
redis (>= 3.0)
|
127
|
-
redis-namespace
|
126
|
+
redis (>= 3.0.6)
|
127
|
+
redis-namespace (>= 1.3.1)
|
128
128
|
sinatra (1.3.3)
|
129
129
|
rack (~> 1.3, >= 1.3.6)
|
130
130
|
rack-protection (~> 1.2)
|
@@ -133,14 +133,14 @@ GEM
|
|
133
133
|
hike (~> 1.2)
|
134
134
|
rack (~> 1.0)
|
135
135
|
tilt (~> 1.1, != 1.3.0)
|
136
|
-
sqlite3 (1.3.
|
136
|
+
sqlite3 (1.3.8)
|
137
137
|
thor (0.14.6)
|
138
138
|
tilt (1.4.1)
|
139
139
|
timers (1.1.0)
|
140
|
-
treetop (1.4.
|
140
|
+
treetop (1.4.15)
|
141
141
|
polyglot
|
142
142
|
polyglot (>= 0.3.1)
|
143
|
-
tzinfo (0.3.
|
143
|
+
tzinfo (0.3.38)
|
144
144
|
vegas (0.1.11)
|
145
145
|
rack (>= 1.0.0)
|
146
146
|
|
@@ -149,12 +149,14 @@ PLATFORMS
|
|
149
149
|
|
150
150
|
DEPENDENCIES
|
151
151
|
appraisal
|
152
|
+
bundler
|
152
153
|
delayed_job
|
153
154
|
delayed_job_active_record
|
154
155
|
delayed_paperclip!
|
155
|
-
json
|
156
156
|
mocha
|
157
|
-
rails (~> 3.1.
|
157
|
+
rails (~> 3.1.12)
|
158
|
+
railties
|
159
|
+
rake
|
158
160
|
resque
|
159
161
|
rspec
|
160
162
|
sidekiq
|
data/gemfiles/rails3_2.gemfile
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
delayed_paperclip (2.
|
5
|
-
paperclip (>= 3.3
|
4
|
+
delayed_paperclip (2.7.0)
|
5
|
+
paperclip (>= 3.3)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: http://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionmailer (3.2.
|
11
|
-
actionpack (= 3.2.
|
12
|
-
mail (~> 2.5.
|
13
|
-
actionpack (3.2.
|
14
|
-
activemodel (= 3.2.
|
15
|
-
activesupport (= 3.2.
|
10
|
+
actionmailer (3.2.17)
|
11
|
+
actionpack (= 3.2.17)
|
12
|
+
mail (~> 2.5.4)
|
13
|
+
actionpack (3.2.17)
|
14
|
+
activemodel (= 3.2.17)
|
15
|
+
activesupport (= 3.2.17)
|
16
16
|
builder (~> 3.0.0)
|
17
17
|
erubis (~> 2.7.0)
|
18
18
|
journey (~> 1.0.4)
|
@@ -20,89 +20,89 @@ GEM
|
|
20
20
|
rack-cache (~> 1.2)
|
21
21
|
rack-test (~> 0.6.1)
|
22
22
|
sprockets (~> 2.2.1)
|
23
|
-
activemodel (3.2.
|
24
|
-
activesupport (= 3.2.
|
23
|
+
activemodel (3.2.17)
|
24
|
+
activesupport (= 3.2.17)
|
25
25
|
builder (~> 3.0.0)
|
26
|
-
activerecord (3.2.
|
27
|
-
activemodel (= 3.2.
|
28
|
-
activesupport (= 3.2.
|
26
|
+
activerecord (3.2.17)
|
27
|
+
activemodel (= 3.2.17)
|
28
|
+
activesupport (= 3.2.17)
|
29
29
|
arel (~> 3.0.2)
|
30
30
|
tzinfo (~> 0.3.29)
|
31
|
-
activeresource (3.2.
|
32
|
-
activemodel (= 3.2.
|
33
|
-
activesupport (= 3.2.
|
34
|
-
activesupport (3.2.
|
35
|
-
i18n (
|
31
|
+
activeresource (3.2.17)
|
32
|
+
activemodel (= 3.2.17)
|
33
|
+
activesupport (= 3.2.17)
|
34
|
+
activesupport (3.2.17)
|
35
|
+
i18n (~> 0.6, >= 0.6.4)
|
36
36
|
multi_json (~> 1.0)
|
37
37
|
appraisal (0.5.2)
|
38
38
|
bundler
|
39
39
|
rake
|
40
|
-
arel (3.0.
|
40
|
+
arel (3.0.3)
|
41
41
|
builder (3.0.4)
|
42
|
-
celluloid (0.
|
43
|
-
timers (
|
42
|
+
celluloid (0.15.2)
|
43
|
+
timers (~> 1.1.0)
|
44
44
|
climate_control (0.0.3)
|
45
45
|
activesupport (>= 3.0)
|
46
|
-
cocaine (0.5.
|
46
|
+
cocaine (0.5.3)
|
47
47
|
climate_control (>= 0.0.3, < 1.0)
|
48
|
-
connection_pool (1.
|
49
|
-
delayed_job (
|
50
|
-
activesupport (
|
51
|
-
delayed_job_active_record (0.
|
52
|
-
activerecord (>=
|
53
|
-
delayed_job (
|
54
|
-
diff-lcs (1.2.
|
48
|
+
connection_pool (1.2.0)
|
49
|
+
delayed_job (4.0.0)
|
50
|
+
activesupport (>= 3.0, < 4.1)
|
51
|
+
delayed_job_active_record (4.0.0)
|
52
|
+
activerecord (>= 3.0, < 4.1)
|
53
|
+
delayed_job (>= 3.0, < 4.1)
|
54
|
+
diff-lcs (1.2.5)
|
55
55
|
erubis (2.7.0)
|
56
|
-
hike (1.2.
|
57
|
-
i18n (0.6.
|
56
|
+
hike (1.2.3)
|
57
|
+
i18n (0.6.9)
|
58
58
|
journey (1.0.4)
|
59
|
-
json (1.8.
|
59
|
+
json (1.8.1)
|
60
60
|
mail (2.5.4)
|
61
61
|
mime-types (~> 1.16)
|
62
62
|
treetop (~> 1.4.8)
|
63
|
-
metaclass (0.0.
|
64
|
-
mime-types (1.
|
65
|
-
mocha (0.
|
63
|
+
metaclass (0.0.3)
|
64
|
+
mime-types (1.25.1)
|
65
|
+
mocha (1.0.0)
|
66
66
|
metaclass (~> 0.0.1)
|
67
67
|
mono_logger (1.1.0)
|
68
|
-
multi_json (1.
|
69
|
-
paperclip (
|
68
|
+
multi_json (1.8.4)
|
69
|
+
paperclip (4.1.0)
|
70
70
|
activemodel (>= 3.0.0)
|
71
71
|
activesupport (>= 3.0.0)
|
72
|
-
cocaine (~> 0.5.
|
72
|
+
cocaine (~> 0.5.3)
|
73
73
|
mime-types
|
74
|
-
polyglot (0.3.
|
74
|
+
polyglot (0.3.4)
|
75
75
|
rack (1.4.5)
|
76
76
|
rack-cache (1.2)
|
77
77
|
rack (>= 0.4)
|
78
|
-
rack-protection (1.5.
|
78
|
+
rack-protection (1.5.2)
|
79
79
|
rack
|
80
80
|
rack-ssl (1.3.3)
|
81
81
|
rack
|
82
82
|
rack-test (0.6.2)
|
83
83
|
rack (>= 1.0)
|
84
|
-
rails (3.2.
|
85
|
-
actionmailer (= 3.2.
|
86
|
-
actionpack (= 3.2.
|
87
|
-
activerecord (= 3.2.
|
88
|
-
activeresource (= 3.2.
|
89
|
-
activesupport (= 3.2.
|
84
|
+
rails (3.2.17)
|
85
|
+
actionmailer (= 3.2.17)
|
86
|
+
actionpack (= 3.2.17)
|
87
|
+
activerecord (= 3.2.17)
|
88
|
+
activeresource (= 3.2.17)
|
89
|
+
activesupport (= 3.2.17)
|
90
90
|
bundler (~> 1.0)
|
91
|
-
railties (= 3.2.
|
92
|
-
railties (3.2.
|
93
|
-
actionpack (= 3.2.
|
94
|
-
activesupport (= 3.2.
|
91
|
+
railties (= 3.2.17)
|
92
|
+
railties (3.2.17)
|
93
|
+
actionpack (= 3.2.17)
|
94
|
+
activesupport (= 3.2.17)
|
95
95
|
rack-ssl (~> 1.3.2)
|
96
96
|
rake (>= 0.8.7)
|
97
97
|
rdoc (~> 3.4)
|
98
98
|
thor (>= 0.14.6, < 2.0)
|
99
|
-
rake (10.
|
99
|
+
rake (10.1.1)
|
100
100
|
rdoc (3.12.2)
|
101
101
|
json (~> 1.4)
|
102
|
-
redis (3.0.
|
103
|
-
redis-namespace (1.
|
104
|
-
redis (~> 3.0.
|
105
|
-
resque (1.
|
102
|
+
redis (3.0.7)
|
103
|
+
redis-namespace (1.4.1)
|
104
|
+
redis (~> 3.0.4)
|
105
|
+
resque (1.25.1)
|
106
106
|
mono_logger (~> 1.0)
|
107
107
|
multi_json (~> 1.0)
|
108
108
|
redis-namespace (~> 1.2)
|
@@ -112,33 +112,33 @@ GEM
|
|
112
112
|
rspec-core (~> 2.14.0)
|
113
113
|
rspec-expectations (~> 2.14.0)
|
114
114
|
rspec-mocks (~> 2.14.0)
|
115
|
-
rspec-core (2.14.
|
116
|
-
rspec-expectations (2.14.
|
115
|
+
rspec-core (2.14.7)
|
116
|
+
rspec-expectations (2.14.5)
|
117
117
|
diff-lcs (>= 1.1.3, < 2.0)
|
118
|
-
rspec-mocks (2.14.
|
119
|
-
sidekiq (2.
|
120
|
-
celluloid (>= 0.
|
118
|
+
rspec-mocks (2.14.5)
|
119
|
+
sidekiq (2.17.6)
|
120
|
+
celluloid (>= 0.15.2)
|
121
121
|
connection_pool (>= 1.0.0)
|
122
122
|
json
|
123
|
-
redis (>= 3.0)
|
124
|
-
redis-namespace
|
125
|
-
sinatra (1.
|
123
|
+
redis (>= 3.0.6)
|
124
|
+
redis-namespace (>= 1.3.1)
|
125
|
+
sinatra (1.4.4)
|
126
126
|
rack (~> 1.4)
|
127
|
-
rack-protection (~> 1.
|
128
|
-
tilt (~> 1.3, >= 1.3.
|
127
|
+
rack-protection (~> 1.4)
|
128
|
+
tilt (~> 1.3, >= 1.3.4)
|
129
129
|
sprockets (2.2.2)
|
130
130
|
hike (~> 1.2)
|
131
131
|
multi_json (~> 1.0)
|
132
132
|
rack (~> 1.0)
|
133
133
|
tilt (~> 1.1, != 1.3.0)
|
134
|
-
sqlite3 (1.3.
|
134
|
+
sqlite3 (1.3.8)
|
135
135
|
thor (0.18.1)
|
136
136
|
tilt (1.4.1)
|
137
137
|
timers (1.1.0)
|
138
|
-
treetop (1.4.
|
138
|
+
treetop (1.4.15)
|
139
139
|
polyglot
|
140
140
|
polyglot (>= 0.3.1)
|
141
|
-
tzinfo (0.3.
|
141
|
+
tzinfo (0.3.38)
|
142
142
|
vegas (0.1.11)
|
143
143
|
rack (>= 1.0.0)
|
144
144
|
|
@@ -147,12 +147,14 @@ PLATFORMS
|
|
147
147
|
|
148
148
|
DEPENDENCIES
|
149
149
|
appraisal
|
150
|
+
bundler
|
150
151
|
delayed_job
|
151
152
|
delayed_job_active_record
|
152
153
|
delayed_paperclip!
|
153
|
-
json
|
154
154
|
mocha
|
155
|
-
rails (~> 3.2.
|
155
|
+
rails (~> 3.2.17)
|
156
|
+
railties
|
157
|
+
rake
|
156
158
|
resque
|
157
159
|
rspec
|
158
160
|
sidekiq
|