delayed_paperclip 2.6.0.0 → 2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +7 -0
- data/.rbenv-version +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +27 -0
- data/Appraisals +15 -0
- data/CONTRIBUTING +19 -0
- data/ChangeLog +4 -0
- data/Gemfile +11 -0
- data/Rakefile +7 -2
- data/delayed_paperclip.gemspec +26 -0
- data/gemfiles/paperclip3_5.gemfile +11 -0
- data/gemfiles/paperclip3_5.gemfile.lock +160 -0
- data/gemfiles/rails3.gemfile +10 -0
- data/gemfiles/rails3.gemfile.lock +151 -0
- data/gemfiles/rails3_1.gemfile +10 -0
- data/gemfiles/rails3_1.gemfile.lock +161 -0
- data/gemfiles/rails3_2.gemfile +10 -0
- data/gemfiles/rails3_2.gemfile.lock +159 -0
- data/lib/delayed_paperclip/attachment.rb +9 -7
- data/lib/delayed_paperclip/jobs/delayed_job.rb +2 -2
- data/lib/delayed_paperclip/jobs.rb +2 -2
- data/lib/delayed_paperclip/railtie.rb +5 -0
- data/lib/delayed_paperclip/url_generator.rb +15 -2
- data/lib/delayed_paperclip/version.rb +3 -0
- data/lib/delayed_paperclip.rb +28 -17
- data/spec/delayed_paperclip/attachment_spec.rb +153 -0
- data/spec/delayed_paperclip/class_methods_spec.rb +85 -0
- data/spec/delayed_paperclip/instance_methods_spec.rb +80 -0
- data/spec/delayed_paperclip/url_generator_spec.rb +171 -0
- data/spec/delayed_paperclip_spec.rb +56 -0
- data/spec/fixtures/12k.png +0 -0
- data/spec/integration/delayed_job_spec.rb +55 -0
- data/spec/integration/examples/base.rb +316 -0
- data/spec/integration/resque_spec.rb +40 -0
- data/spec/integration/sidekiq_spec.rb +48 -0
- data/spec/spec_helper.rb +86 -0
- data/test/base_delayed_paperclip_test.rb +3 -3
- data/test/test_helper.rb +14 -7
- metadata +84 -51
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2f1f0d20282bdd5e3eab8d4ff43625509b220a0e
|
4
|
+
data.tar.gz: 5b0297d6217bc386de53c31acda6f23fe3f4084f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 96e7f3f1478bc5a00de81315773293ade4b58787ca2fe20f031f8db3a5143862dfe635992975fb62f4c135a32f89340edcb97ed1b9c08c4ac9e9bf3ab5edb9d8
|
7
|
+
data.tar.gz: faafa46d8ba2e66ae30abe9af3b55b921d8eda49a2308c35900b7eaf92413116a8c0d01128beb7fc53374ce2ddfef356dc6a4dab31ea521213e2d625caf3cc3a
|
data/.gitignore
ADDED
data/.rbenv-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.9.3-p429
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
delayed_paperclip
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.0.0-p195
|
data/.travis.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.0.0
|
4
|
+
- 1.9.3
|
5
|
+
- rbx-19mode
|
6
|
+
|
7
|
+
matrix:
|
8
|
+
allow_failures:
|
9
|
+
- rvm: rbx-19mode
|
10
|
+
|
11
|
+
services:
|
12
|
+
- redis
|
13
|
+
|
14
|
+
script:
|
15
|
+
- bundle exec rake clean test spec
|
16
|
+
|
17
|
+
notifications:
|
18
|
+
email:
|
19
|
+
- james@jamesrgifford.com
|
20
|
+
- scott@artsicle.com
|
21
|
+
|
22
|
+
gemfile:
|
23
|
+
- gemfiles/rails3.gemfile
|
24
|
+
- gemfiles/rails3_1.gemfile
|
25
|
+
- gemfiles/rails3_2.gemfile
|
26
|
+
|
27
|
+
|
data/Appraisals
ADDED
data/CONTRIBUTING
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Contributor Policy
|
2
|
+
=================
|
3
|
+
|
4
|
+
Commit bit. If you have a commit accepted into the project then you get full git access to the repo. If I don't give you this in a timely manner just send me a message.
|
5
|
+
|
6
|
+
Testing
|
7
|
+
======
|
8
|
+
|
9
|
+
Please don't commit code without tests. You can bootstrap the development environment by running `bundle install`. After that, running `rake` should just work. If it doesn't then file a bug.
|
10
|
+
|
11
|
+
Dependencies for Testing:
|
12
|
+
- Redis. You need redis. For linux users, you can install the redis-server package and roll, Mac users will need to install it with homebrew, and I'm not entirely sure how to make it work with Windows users.
|
13
|
+
|
14
|
+
Versioning
|
15
|
+
=========
|
16
|
+
|
17
|
+
Don't bump the version in any changes you make or pull in to the project. I'll maintain rights to push the gem to rubygems.org and make releases when appropriate.
|
18
|
+
|
19
|
+
And please keep the README up to date. Thank you!
|
data/ChangeLog
ADDED
data/Gemfile
ADDED
data/Rakefile
CHANGED
@@ -8,11 +8,10 @@ require 'rake/testtask'
|
|
8
8
|
|
9
9
|
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
|
10
10
|
|
11
|
-
|
12
11
|
desc 'Default: run unit tests.'
|
13
12
|
task :default => [:clean, 'appraisal:install', :all]
|
14
13
|
|
15
|
-
desc 'Test the paperclip plugin under all supported Rails versions.'
|
14
|
+
desc 'Test the delayed paperclip plugin under all supported Rails versions.'
|
16
15
|
task :all do |t|
|
17
16
|
exec('rake appraisal test')
|
18
17
|
end
|
@@ -34,3 +33,9 @@ Rake::TestTask.new(:test) do |t|
|
|
34
33
|
t.pattern = 'test/**/*_test.rb'
|
35
34
|
t.verbose = true
|
36
35
|
end
|
36
|
+
|
37
|
+
require 'rspec/core/rake_task'
|
38
|
+
RSpec::Core::RakeTask.new do |t|
|
39
|
+
t.pattern = 'spec/**/*_spec.rb'
|
40
|
+
end
|
41
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
2
|
+
require "delayed_paperclip/version"
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = %q{delayed_paperclip}
|
6
|
+
s.version = DelayedPaperclip::VERSION
|
7
|
+
|
8
|
+
s.authors = ["Jesse Storimer", "Bert Goethals", "James Gifford", "Scott Carleton"]
|
9
|
+
s.summary = %q{Process your Paperclip attachments in the background.}
|
10
|
+
s.description = %q{Process your Paperclip attachments in the background with delayed_job, Resque or your own processor.}
|
11
|
+
s.email = %q{james@jamesrgifford.com}
|
12
|
+
s.homepage = %q{http://github.com/jrgifford/delayed_paperclip}
|
13
|
+
|
14
|
+
s.add_dependency 'paperclip', [">= 3.3.0"]
|
15
|
+
|
16
|
+
s.add_development_dependency 'mocha'
|
17
|
+
s.add_development_dependency "rspec"
|
18
|
+
s.add_development_dependency 'sqlite3'
|
19
|
+
s.add_development_dependency 'delayed_job'
|
20
|
+
s.add_development_dependency 'resque'
|
21
|
+
s.add_development_dependency 'sidekiq'
|
22
|
+
|
23
|
+
s.files = `git ls-files`.split("\n")
|
24
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,160 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
delayed_paperclip (2.6.1)
|
5
|
+
paperclip (>= 3.3.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: http://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionmailer (3.2.14)
|
11
|
+
actionpack (= 3.2.14)
|
12
|
+
mail (~> 2.5.4)
|
13
|
+
actionpack (3.2.14)
|
14
|
+
activemodel (= 3.2.14)
|
15
|
+
activesupport (= 3.2.14)
|
16
|
+
builder (~> 3.0.0)
|
17
|
+
erubis (~> 2.7.0)
|
18
|
+
journey (~> 1.0.4)
|
19
|
+
rack (~> 1.4.5)
|
20
|
+
rack-cache (~> 1.2)
|
21
|
+
rack-test (~> 0.6.1)
|
22
|
+
sprockets (~> 2.2.1)
|
23
|
+
activemodel (3.2.14)
|
24
|
+
activesupport (= 3.2.14)
|
25
|
+
builder (~> 3.0.0)
|
26
|
+
activerecord (3.2.14)
|
27
|
+
activemodel (= 3.2.14)
|
28
|
+
activesupport (= 3.2.14)
|
29
|
+
arel (~> 3.0.2)
|
30
|
+
tzinfo (~> 0.3.29)
|
31
|
+
activeresource (3.2.14)
|
32
|
+
activemodel (= 3.2.14)
|
33
|
+
activesupport (= 3.2.14)
|
34
|
+
activesupport (3.2.14)
|
35
|
+
i18n (~> 0.6, >= 0.6.4)
|
36
|
+
multi_json (~> 1.0)
|
37
|
+
appraisal (0.5.2)
|
38
|
+
bundler
|
39
|
+
rake
|
40
|
+
arel (3.0.2)
|
41
|
+
builder (3.0.4)
|
42
|
+
celluloid (0.14.1)
|
43
|
+
timers (>= 1.0.0)
|
44
|
+
climate_control (0.0.3)
|
45
|
+
activesupport (>= 3.0)
|
46
|
+
cocaine (0.5.1)
|
47
|
+
climate_control (>= 0.0.3, < 1.0)
|
48
|
+
connection_pool (1.0.0)
|
49
|
+
delayed_job (3.0.5)
|
50
|
+
activesupport (~> 3.0)
|
51
|
+
delayed_job_active_record (0.4.4)
|
52
|
+
activerecord (>= 2.1.0, < 4)
|
53
|
+
delayed_job (~> 3.0)
|
54
|
+
diff-lcs (1.2.4)
|
55
|
+
erubis (2.7.0)
|
56
|
+
hike (1.2.3)
|
57
|
+
i18n (0.6.4)
|
58
|
+
journey (1.0.4)
|
59
|
+
json (1.8.0)
|
60
|
+
mail (2.5.4)
|
61
|
+
mime-types (~> 1.16)
|
62
|
+
treetop (~> 1.4.8)
|
63
|
+
metaclass (0.0.1)
|
64
|
+
mime-types (1.23)
|
65
|
+
mocha (0.14.0)
|
66
|
+
metaclass (~> 0.0.1)
|
67
|
+
mono_logger (1.1.0)
|
68
|
+
multi_json (1.7.7)
|
69
|
+
paperclip (3.5.0)
|
70
|
+
activemodel (>= 3.0.0)
|
71
|
+
activesupport (>= 3.0.0)
|
72
|
+
cocaine (~> 0.5.0)
|
73
|
+
mime-types
|
74
|
+
polyglot (0.3.3)
|
75
|
+
rack (1.4.5)
|
76
|
+
rack-cache (1.2)
|
77
|
+
rack (>= 0.4)
|
78
|
+
rack-protection (1.5.0)
|
79
|
+
rack
|
80
|
+
rack-ssl (1.3.3)
|
81
|
+
rack
|
82
|
+
rack-test (0.6.2)
|
83
|
+
rack (>= 1.0)
|
84
|
+
rails (3.2.14)
|
85
|
+
actionmailer (= 3.2.14)
|
86
|
+
actionpack (= 3.2.14)
|
87
|
+
activerecord (= 3.2.14)
|
88
|
+
activeresource (= 3.2.14)
|
89
|
+
activesupport (= 3.2.14)
|
90
|
+
bundler (~> 1.0)
|
91
|
+
railties (= 3.2.14)
|
92
|
+
railties (3.2.14)
|
93
|
+
actionpack (= 3.2.14)
|
94
|
+
activesupport (= 3.2.14)
|
95
|
+
rack-ssl (~> 1.3.2)
|
96
|
+
rake (>= 0.8.7)
|
97
|
+
rdoc (~> 3.4)
|
98
|
+
thor (>= 0.14.6, < 2.0)
|
99
|
+
rake (10.0.4)
|
100
|
+
rdoc (3.12.2)
|
101
|
+
json (~> 1.4)
|
102
|
+
redis (3.0.4)
|
103
|
+
redis-namespace (1.3.0)
|
104
|
+
redis (~> 3.0.0)
|
105
|
+
resque (1.24.1)
|
106
|
+
mono_logger (~> 1.0)
|
107
|
+
multi_json (~> 1.0)
|
108
|
+
redis-namespace (~> 1.2)
|
109
|
+
sinatra (>= 0.9.2)
|
110
|
+
vegas (~> 0.1.2)
|
111
|
+
rspec (2.14.1)
|
112
|
+
rspec-core (~> 2.14.0)
|
113
|
+
rspec-expectations (~> 2.14.0)
|
114
|
+
rspec-mocks (~> 2.14.0)
|
115
|
+
rspec-core (2.14.4)
|
116
|
+
rspec-expectations (2.14.0)
|
117
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
118
|
+
rspec-mocks (2.14.1)
|
119
|
+
sidekiq (2.12.1)
|
120
|
+
celluloid (>= 0.14.1)
|
121
|
+
connection_pool (>= 1.0.0)
|
122
|
+
json
|
123
|
+
redis (>= 3.0)
|
124
|
+
redis-namespace
|
125
|
+
sinatra (1.3.6)
|
126
|
+
rack (~> 1.4)
|
127
|
+
rack-protection (~> 1.3)
|
128
|
+
tilt (~> 1.3, >= 1.3.3)
|
129
|
+
sprockets (2.2.2)
|
130
|
+
hike (~> 1.2)
|
131
|
+
multi_json (~> 1.0)
|
132
|
+
rack (~> 1.0)
|
133
|
+
tilt (~> 1.1, != 1.3.0)
|
134
|
+
sqlite3 (1.3.7)
|
135
|
+
thor (0.18.1)
|
136
|
+
tilt (1.4.1)
|
137
|
+
timers (1.1.0)
|
138
|
+
treetop (1.4.14)
|
139
|
+
polyglot
|
140
|
+
polyglot (>= 0.3.1)
|
141
|
+
tzinfo (0.3.37)
|
142
|
+
vegas (0.1.11)
|
143
|
+
rack (>= 1.0.0)
|
144
|
+
|
145
|
+
PLATFORMS
|
146
|
+
ruby
|
147
|
+
|
148
|
+
DEPENDENCIES
|
149
|
+
appraisal
|
150
|
+
delayed_job
|
151
|
+
delayed_job_active_record
|
152
|
+
delayed_paperclip!
|
153
|
+
json
|
154
|
+
mocha
|
155
|
+
paperclip (~> 3.5)
|
156
|
+
rails
|
157
|
+
resque
|
158
|
+
rspec
|
159
|
+
sidekiq
|
160
|
+
sqlite3
|
@@ -0,0 +1,151 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
delayed_paperclip (2.6.1)
|
5
|
+
paperclip (>= 3.3.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: http://rubygems.org/
|
9
|
+
specs:
|
10
|
+
abstract (1.0.0)
|
11
|
+
actionmailer (3.0.20)
|
12
|
+
actionpack (= 3.0.20)
|
13
|
+
mail (~> 2.2.19)
|
14
|
+
actionpack (3.0.20)
|
15
|
+
activemodel (= 3.0.20)
|
16
|
+
activesupport (= 3.0.20)
|
17
|
+
builder (~> 2.1.2)
|
18
|
+
erubis (~> 2.6.6)
|
19
|
+
i18n (~> 0.5.0)
|
20
|
+
rack (~> 1.2.5)
|
21
|
+
rack-mount (~> 0.6.14)
|
22
|
+
rack-test (~> 0.5.7)
|
23
|
+
tzinfo (~> 0.3.23)
|
24
|
+
activemodel (3.0.20)
|
25
|
+
activesupport (= 3.0.20)
|
26
|
+
builder (~> 2.1.2)
|
27
|
+
i18n (~> 0.5.0)
|
28
|
+
activerecord (3.0.20)
|
29
|
+
activemodel (= 3.0.20)
|
30
|
+
activesupport (= 3.0.20)
|
31
|
+
arel (~> 2.0.10)
|
32
|
+
tzinfo (~> 0.3.23)
|
33
|
+
activeresource (3.0.20)
|
34
|
+
activemodel (= 3.0.20)
|
35
|
+
activesupport (= 3.0.20)
|
36
|
+
activesupport (3.0.20)
|
37
|
+
appraisal (0.5.2)
|
38
|
+
bundler
|
39
|
+
rake
|
40
|
+
arel (2.0.10)
|
41
|
+
backports (3.3.1)
|
42
|
+
builder (2.1.2)
|
43
|
+
celluloid (0.14.1)
|
44
|
+
timers (>= 1.0.0)
|
45
|
+
climate_control (0.0.3)
|
46
|
+
activesupport (>= 3.0)
|
47
|
+
cocaine (0.5.1)
|
48
|
+
climate_control (>= 0.0.3, < 1.0)
|
49
|
+
connection_pool (1.0.0)
|
50
|
+
delayed_job (3.0.5)
|
51
|
+
activesupport (~> 3.0)
|
52
|
+
delayed_job_active_record (0.4.4)
|
53
|
+
activerecord (>= 2.1.0, < 4)
|
54
|
+
delayed_job (~> 3.0)
|
55
|
+
diff-lcs (1.2.4)
|
56
|
+
erubis (2.6.6)
|
57
|
+
abstract (>= 1.0.0)
|
58
|
+
i18n (0.5.0)
|
59
|
+
json (1.8.0)
|
60
|
+
mail (2.2.20)
|
61
|
+
activesupport (>= 2.3.6)
|
62
|
+
i18n (>= 0.4.0)
|
63
|
+
mime-types (~> 1.16)
|
64
|
+
treetop (~> 1.4.8)
|
65
|
+
metaclass (0.0.1)
|
66
|
+
mime-types (1.23)
|
67
|
+
mocha (0.14.0)
|
68
|
+
metaclass (~> 0.0.1)
|
69
|
+
mono_logger (1.1.0)
|
70
|
+
multi_json (1.7.5)
|
71
|
+
paperclip (3.5.0)
|
72
|
+
activemodel (>= 3.0.0)
|
73
|
+
activesupport (>= 3.0.0)
|
74
|
+
cocaine (~> 0.5.0)
|
75
|
+
mime-types
|
76
|
+
polyglot (0.3.3)
|
77
|
+
rack (1.2.8)
|
78
|
+
rack-mount (0.6.14)
|
79
|
+
rack (>= 1.0.0)
|
80
|
+
rack-test (0.5.7)
|
81
|
+
rack (>= 1.0)
|
82
|
+
rails (3.0.20)
|
83
|
+
actionmailer (= 3.0.20)
|
84
|
+
actionpack (= 3.0.20)
|
85
|
+
activerecord (= 3.0.20)
|
86
|
+
activeresource (= 3.0.20)
|
87
|
+
activesupport (= 3.0.20)
|
88
|
+
bundler (~> 1.0)
|
89
|
+
railties (= 3.0.20)
|
90
|
+
railties (3.0.20)
|
91
|
+
actionpack (= 3.0.20)
|
92
|
+
activesupport (= 3.0.20)
|
93
|
+
rake (>= 0.8.7)
|
94
|
+
rdoc (~> 3.4)
|
95
|
+
thor (~> 0.14.4)
|
96
|
+
rake (10.0.4)
|
97
|
+
rdoc (3.12.2)
|
98
|
+
json (~> 1.4)
|
99
|
+
redis (3.0.4)
|
100
|
+
redis-namespace (1.3.0)
|
101
|
+
redis (~> 3.0.0)
|
102
|
+
resque (1.24.1)
|
103
|
+
mono_logger (~> 1.0)
|
104
|
+
multi_json (~> 1.0)
|
105
|
+
redis-namespace (~> 1.2)
|
106
|
+
sinatra (>= 0.9.2)
|
107
|
+
vegas (~> 0.1.2)
|
108
|
+
rspec (2.14.1)
|
109
|
+
rspec-core (~> 2.14.0)
|
110
|
+
rspec-expectations (~> 2.14.0)
|
111
|
+
rspec-mocks (~> 2.14.0)
|
112
|
+
rspec-core (2.14.4)
|
113
|
+
rspec-expectations (2.14.0)
|
114
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
115
|
+
rspec-mocks (2.14.1)
|
116
|
+
sidekiq (2.12.1)
|
117
|
+
celluloid (>= 0.14.1)
|
118
|
+
connection_pool (>= 1.0.0)
|
119
|
+
json
|
120
|
+
redis (>= 3.0)
|
121
|
+
redis-namespace
|
122
|
+
sinatra (1.2.9)
|
123
|
+
backports
|
124
|
+
rack (~> 1.1, < 1.5)
|
125
|
+
tilt (>= 1.2.2, < 2.0)
|
126
|
+
sqlite3 (1.3.7)
|
127
|
+
thor (0.14.6)
|
128
|
+
tilt (1.4.1)
|
129
|
+
timers (1.1.0)
|
130
|
+
treetop (1.4.12)
|
131
|
+
polyglot
|
132
|
+
polyglot (>= 0.3.1)
|
133
|
+
tzinfo (0.3.37)
|
134
|
+
vegas (0.1.11)
|
135
|
+
rack (>= 1.0.0)
|
136
|
+
|
137
|
+
PLATFORMS
|
138
|
+
ruby
|
139
|
+
|
140
|
+
DEPENDENCIES
|
141
|
+
appraisal
|
142
|
+
delayed_job
|
143
|
+
delayed_job_active_record
|
144
|
+
delayed_paperclip!
|
145
|
+
json
|
146
|
+
mocha
|
147
|
+
rails (~> 3.0.10)
|
148
|
+
resque
|
149
|
+
rspec
|
150
|
+
sidekiq
|
151
|
+
sqlite3
|
@@ -0,0 +1,161 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
delayed_paperclip (2.6.1)
|
5
|
+
paperclip (>= 3.3.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: http://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionmailer (3.1.8)
|
11
|
+
actionpack (= 3.1.8)
|
12
|
+
mail (~> 2.3.3)
|
13
|
+
actionpack (3.1.8)
|
14
|
+
activemodel (= 3.1.8)
|
15
|
+
activesupport (= 3.1.8)
|
16
|
+
builder (~> 3.0.0)
|
17
|
+
erubis (~> 2.7.0)
|
18
|
+
i18n (~> 0.6)
|
19
|
+
rack (~> 1.3.6)
|
20
|
+
rack-cache (~> 1.2)
|
21
|
+
rack-mount (~> 0.8.2)
|
22
|
+
rack-test (~> 0.6.1)
|
23
|
+
sprockets (~> 2.0.4)
|
24
|
+
activemodel (3.1.8)
|
25
|
+
activesupport (= 3.1.8)
|
26
|
+
builder (~> 3.0.0)
|
27
|
+
i18n (~> 0.6)
|
28
|
+
activerecord (3.1.8)
|
29
|
+
activemodel (= 3.1.8)
|
30
|
+
activesupport (= 3.1.8)
|
31
|
+
arel (~> 2.2.3)
|
32
|
+
tzinfo (~> 0.3.29)
|
33
|
+
activeresource (3.1.8)
|
34
|
+
activemodel (= 3.1.8)
|
35
|
+
activesupport (= 3.1.8)
|
36
|
+
activesupport (3.1.8)
|
37
|
+
multi_json (>= 1.0, < 1.3)
|
38
|
+
appraisal (0.5.2)
|
39
|
+
bundler
|
40
|
+
rake
|
41
|
+
arel (2.2.3)
|
42
|
+
builder (3.0.4)
|
43
|
+
celluloid (0.14.1)
|
44
|
+
timers (>= 1.0.0)
|
45
|
+
climate_control (0.0.3)
|
46
|
+
activesupport (>= 3.0)
|
47
|
+
cocaine (0.5.1)
|
48
|
+
climate_control (>= 0.0.3, < 1.0)
|
49
|
+
connection_pool (1.0.0)
|
50
|
+
delayed_job (3.0.5)
|
51
|
+
activesupport (~> 3.0)
|
52
|
+
delayed_job_active_record (0.4.4)
|
53
|
+
activerecord (>= 2.1.0, < 4)
|
54
|
+
delayed_job (~> 3.0)
|
55
|
+
diff-lcs (1.2.4)
|
56
|
+
erubis (2.7.0)
|
57
|
+
hike (1.2.2)
|
58
|
+
i18n (0.6.1)
|
59
|
+
json (1.8.0)
|
60
|
+
mail (2.3.3)
|
61
|
+
i18n (>= 0.4.0)
|
62
|
+
mime-types (~> 1.16)
|
63
|
+
treetop (~> 1.4.8)
|
64
|
+
metaclass (0.0.1)
|
65
|
+
mime-types (1.23)
|
66
|
+
mocha (0.14.0)
|
67
|
+
metaclass (~> 0.0.1)
|
68
|
+
mono_logger (1.1.0)
|
69
|
+
multi_json (1.2.0)
|
70
|
+
paperclip (3.5.0)
|
71
|
+
activemodel (>= 3.0.0)
|
72
|
+
activesupport (>= 3.0.0)
|
73
|
+
cocaine (~> 0.5.0)
|
74
|
+
mime-types
|
75
|
+
polyglot (0.3.3)
|
76
|
+
rack (1.3.6)
|
77
|
+
rack-cache (1.2)
|
78
|
+
rack (>= 0.4)
|
79
|
+
rack-mount (0.8.3)
|
80
|
+
rack (>= 1.0.0)
|
81
|
+
rack-protection (1.5.0)
|
82
|
+
rack
|
83
|
+
rack-ssl (1.3.3)
|
84
|
+
rack
|
85
|
+
rack-test (0.6.2)
|
86
|
+
rack (>= 1.0)
|
87
|
+
rails (3.1.8)
|
88
|
+
actionmailer (= 3.1.8)
|
89
|
+
actionpack (= 3.1.8)
|
90
|
+
activerecord (= 3.1.8)
|
91
|
+
activeresource (= 3.1.8)
|
92
|
+
activesupport (= 3.1.8)
|
93
|
+
bundler (~> 1.0)
|
94
|
+
railties (= 3.1.8)
|
95
|
+
railties (3.1.8)
|
96
|
+
actionpack (= 3.1.8)
|
97
|
+
activesupport (= 3.1.8)
|
98
|
+
rack-ssl (~> 1.3.2)
|
99
|
+
rake (>= 0.8.7)
|
100
|
+
rdoc (~> 3.4)
|
101
|
+
thor (~> 0.14.6)
|
102
|
+
rake (10.0.4)
|
103
|
+
rdoc (3.12.2)
|
104
|
+
json (~> 1.4)
|
105
|
+
redis (3.0.4)
|
106
|
+
redis-namespace (1.3.0)
|
107
|
+
redis (~> 3.0.0)
|
108
|
+
resque (1.24.1)
|
109
|
+
mono_logger (~> 1.0)
|
110
|
+
multi_json (~> 1.0)
|
111
|
+
redis-namespace (~> 1.2)
|
112
|
+
sinatra (>= 0.9.2)
|
113
|
+
vegas (~> 0.1.2)
|
114
|
+
rspec (2.14.1)
|
115
|
+
rspec-core (~> 2.14.0)
|
116
|
+
rspec-expectations (~> 2.14.0)
|
117
|
+
rspec-mocks (~> 2.14.0)
|
118
|
+
rspec-core (2.14.4)
|
119
|
+
rspec-expectations (2.14.0)
|
120
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
121
|
+
rspec-mocks (2.14.1)
|
122
|
+
sidekiq (2.12.1)
|
123
|
+
celluloid (>= 0.14.1)
|
124
|
+
connection_pool (>= 1.0.0)
|
125
|
+
json
|
126
|
+
redis (>= 3.0)
|
127
|
+
redis-namespace
|
128
|
+
sinatra (1.3.3)
|
129
|
+
rack (~> 1.3, >= 1.3.6)
|
130
|
+
rack-protection (~> 1.2)
|
131
|
+
tilt (~> 1.3, >= 1.3.3)
|
132
|
+
sprockets (2.0.4)
|
133
|
+
hike (~> 1.2)
|
134
|
+
rack (~> 1.0)
|
135
|
+
tilt (~> 1.1, != 1.3.0)
|
136
|
+
sqlite3 (1.3.7)
|
137
|
+
thor (0.14.6)
|
138
|
+
tilt (1.4.1)
|
139
|
+
timers (1.1.0)
|
140
|
+
treetop (1.4.12)
|
141
|
+
polyglot
|
142
|
+
polyglot (>= 0.3.1)
|
143
|
+
tzinfo (0.3.37)
|
144
|
+
vegas (0.1.11)
|
145
|
+
rack (>= 1.0.0)
|
146
|
+
|
147
|
+
PLATFORMS
|
148
|
+
ruby
|
149
|
+
|
150
|
+
DEPENDENCIES
|
151
|
+
appraisal
|
152
|
+
delayed_job
|
153
|
+
delayed_job_active_record
|
154
|
+
delayed_paperclip!
|
155
|
+
json
|
156
|
+
mocha
|
157
|
+
rails (~> 3.1.0)
|
158
|
+
resque
|
159
|
+
rspec
|
160
|
+
sidekiq
|
161
|
+
sqlite3
|