forked from jstorimer/delayed_paperclip
-
Notifications
You must be signed in to change notification settings - Fork 4
/
delayed_paperclip.gemspec
30 lines (22 loc) · 1.14 KB
/
delayed_paperclip.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
include_files = ["README*", "LICENSE", "Rakefile", "init.rb", "{lib,tasks,test,rails,generators,shoulda_macros}/**/*"].map do |glob|
Dir[glob]
end.flatten
exclude_files = ["**/*.rbc", "test/s3.yml", "test/debug.log", "test/paperclip.db", "test/doc", "test/doc/*", "test/pkg", "test/pkg/*", "test/tmp", "test/tmp/*"].map do |glob|
Dir[glob]
end.flatten
spec = Gem::Specification.new do |s|
s.name = %q{delayed_paperclip}
s.version = "2.4.5.1"
s.authors = ["Jesse Storimer", "Bert Goethals"]
s.summary = %q{Process your Paperclip attachments in the background.}
s.description = %q{Process your Paperclip attachments in the background with delayed_job, Resque or your own processor.}
s.email = %q{[email protected]}
s.homepage = %q{http://github.com/jstorimer/delayed_paperclip}
s.files = include_files - exclude_files
s.test_files = Dir["test/**/*,rb"] + Dir['test/features/*']
s.add_dependency 'paperclip', [">= 2.4.5"]
s.add_development_dependency 'mocha'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'delayed_job'
s.add_development_dependency 'resque'
end