import ruby-resque-1.23.0

Resque is a Redis-backed Ruby library for creating background jobs,
placing those jobs on multiple queues, and processing them later.
Background jobs can be any Ruby class or module that responds to
perform. Your existing classes can easily be converted to background
jobs or you can create new classes specifically to do work. Or, you can
do both.
[...]

ok jeremy@
This commit is contained in:
jasper 2012-10-31 22:12:20 +00:00
parent ad4504ce07
commit dbe18b2a96
4 changed files with 121 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# $OpenBSD: Makefile,v 1.1.1.1 2012/10/31 22:12:20 jasper Exp $
COMMENT= Redis-backed library to create jobs and place them on queues
DISTNAME= resque-1.23.0
CATEGORIES= databases www
HOMEPAGE= https://github.com/defunkt/resque
# MIT
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= lang/ruby
CONFIGURE_STYLE= ruby gem
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= converters/ruby-multi_json,${MODRUBY_FLAVOR} \
databases/ruby-redis-namespace,${MODRUBY_FLAVOR} \
www/ruby-sinatra,${MODRUBY_FLAVOR} \
www/ruby-vegas,${MODRUBY_FLAVOR}
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (resque-1.23.0.gem) = 4DCUkduqn2mri8AGP57KzEF2HsVoYjuUzChEsohvS+I=
SIZE (resque-1.23.0.gem) = 83968

View File

@ -0,0 +1,15 @@
Resque is a Redis-backed Ruby library for creating background jobs,
placing those jobs on multiple queues, and processing them later.
Background jobs can be any Ruby class or module that responds to
perform. Your existing classes can easily be converted to background
jobs or you can create new classes specifically to do work. Or, you can
do both.
Resque is heavily inspired by DelayedJob and is comprised of three parts:
* Ruby library for creating, querying, and processing jobs
* Rake task for starting a worker which processes jobs
* Sinatra app for monitoring queues, jobs, and workers.
The ruby-resque package does not install redis by default since it can use
a Redis server on a different host. To install redis: pkg_add redis

View File

@ -0,0 +1,78 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2012/10/31 22:12:20 jasper Exp $
${GEM_BIN}/resque-web${GEM_BIN_SUFFIX}
${GEM_BIN}/resque${GEM_BIN_SUFFIX}
${GEM_LIB}/cache/${DISTNAME}.gem
${GEM_LIB}/gems/${DISTNAME}/
${GEM_LIB}/gems/${DISTNAME}/HISTORY.md
${GEM_LIB}/gems/${DISTNAME}/LICENSE
${GEM_LIB}/gems/${DISTNAME}/README.markdown
${GEM_LIB}/gems/${DISTNAME}/Rakefile
${GEM_LIB}/gems/${DISTNAME}/bin/
${GEM_LIB}/gems/${DISTNAME}/bin/resque
${GEM_LIB}/gems/${DISTNAME}/bin/resque-web
${GEM_LIB}/gems/${DISTNAME}/lib/
${GEM_LIB}/gems/${DISTNAME}/lib/resque/
${GEM_LIB}/gems/${DISTNAME}/lib/resque.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/errors.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure/
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure/airbrake.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure/base.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure/hoptoad.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure/multiple.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure/redis.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/failure/thoughtbot.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/helpers.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/job.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/plugin.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/favicon.ico
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/idle.png
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/jquery-1.3.2.min.js
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/jquery.relatize_date.js
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/poll.png
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/ranger.js
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/reset.css
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/style.css
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/public/working.png
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/test_helper.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/error.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/failed.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/key_sets.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/key_string.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/layout.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/next_more.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/overview.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/queues.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/stats.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/workers.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/server/views/working.erb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/stat.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/tasks.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/vendor/
${GEM_LIB}/gems/${DISTNAME}/lib/resque/vendor/utf8_util/
${GEM_LIB}/gems/${DISTNAME}/lib/resque/vendor/utf8_util.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/vendor/utf8_util/utf8_util_18.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/vendor/utf8_util/utf8_util_19.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/version.rb
${GEM_LIB}/gems/${DISTNAME}/lib/resque/worker.rb
${GEM_LIB}/gems/${DISTNAME}/lib/tasks/
${GEM_LIB}/gems/${DISTNAME}/lib/tasks/redis.rake
${GEM_LIB}/gems/${DISTNAME}/lib/tasks/resque.rake
${GEM_LIB}/gems/${DISTNAME}/test/
${GEM_LIB}/gems/${DISTNAME}/test/airbrake_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/hoptoad_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/job_hooks_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/job_plugins_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/plugin_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/redis-test-cluster.conf
${GEM_LIB}/gems/${DISTNAME}/test/redis-test.conf
${GEM_LIB}/gems/${DISTNAME}/test/resque-web_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/resque_failure_redis_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/resque_test.rb
${GEM_LIB}/gems/${DISTNAME}/test/test_helper.rb
${GEM_LIB}/gems/${DISTNAME}/test/worker_test.rb
${GEM_LIB}/specifications/${DISTNAME}.gemspec