{"id":13682584,"url":"https://github.com/tatey/delayed-web","last_synced_at":"2025-11-11T18:39:58.180Z","repository":{"id":8844567,"uuid":"10550580","full_name":"tatey/delayed-web","owner":"tatey","description":"A rails engine that provides a simple web interface for exposing the Delayed::Job queue.","archived":false,"fork":false,"pushed_at":"2021-03-04T17:12:24.000Z","size":246,"stargazers_count":75,"open_issues_count":4,"forks_count":37,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-15T04:41:13.830Z","etag":null,"topics":["delayed-job","ruby","ruby-gem","ruby-on-rails"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tatey.png","metadata":{"files":{"readme":"README.markdown","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-06-07T13:38:39.000Z","updated_at":"2024-12-15T01:15:29.000Z","dependencies_parsed_at":"2022-08-28T10:10:43.837Z","dependency_job_id":null,"html_url":"https://github.com/tatey/delayed-web","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/tatey/delayed-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tatey%2Fdelayed-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tatey%2Fdelayed-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tatey%2Fdelayed-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tatey%2Fdelayed-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tatey","download_url":"https://codeload.github.com/tatey/delayed-web/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tatey%2Fdelayed-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280630824,"owners_count":26363661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-23T02:00:06.710Z","response_time":142,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["delayed-job","ruby","ruby-gem","ruby-on-rails"],"created_at":"2024-08-02T13:01:49.043Z","updated_at":"2025-11-11T18:39:58.161Z","avatar_url":"https://github.com/tatey.png","language":"Ruby","readme":"# Delayed::Web for Delayed::Job\n\n[![Build Status](https://travis-ci.org/tatey/delayed-web.svg?branch=master)](https://travis-ci.org/tatey/delayed-web)\n\nA rails engine that provides a simple web interface for exposing the\n[Delayed::Job](https://github.com/collectiveidea/delayed_job) queue.\n\n![](http://f.cl.ly/items/1j2m2g223s3q33140S3H/Screen%20Shot%202013-06-13%20at%2011.47.57%20PM.png)\n\n## Requirements\n\n* Ruby 2.2.x, 2.3.x\n* Rails 3.2.x, 4.0.x, 4.1.x, 4.2.x, 5.0.x, 6.x\n* Delayed::Job 3.0.x, 4.0.x\n* ActiveRecord or Mongoid\n\n## Installation\n\nPut this in your Gemfile.\n\n    gem 'delayed-web'\n\nRun bundler.\n\n    bundle install\n\nRun the installation generator.\n\n    rails generate delayed:web:install\n\nThis will install an initializer into `config/initializers/delayed_web.rb`,\nmount the engine at `/jobs` in `config/routes.rb` and add the stylesheets\nto the list of precomiled assets in `application.rb` (If assets are\nenabled).\n\n## Routes\n\nThe installation script will automatically add routes into your app,\nlike this.\n\n```ruby\n# config/routes.rb\nRails.application.routes.draw do\n  mount Delayed::Web::Engine, at: '/jobs'\nend\n```\n\nThis will mount the following routes.\n\n    GET /\n    GET /jobs\n    GET /jobs/:id\n\n## Authentication\n\nOut of the box Delayed::Web doesn't make any assumptions about\nauthentication. It's possible to take advantage of rails routing\nconstraints or rack middleware.\n\nAn example using Devise's `authenticated` constraint.\n\n```ruby\n# config/routes.rb\nauthenticated :user, -\u003e user { user.admin? } do\n  mount Delayed::Web::Engine, at: '/jobs'\nend\n```\n\nAn example using `Rack::Auth::Basic`.\n\n```ruby\n# config/routes.rb\nDelayed::Web::Engine.middleware.use Rack::Auth::Basic do |username, password|\n  username == ENV['USERNAME'] \u0026\u0026 password == ENV['PASSWORD']\nend\n```\n\n## Backend\n\nThe installation script will automatically set the backend you're using for\n`Delayed::Job`, like this.\n\n```\n# config/initializers/delayed_web.rb\nRails.application.config.to_prepare do\n  Delayed::Web::Job.backend = 'active_record'\nend\n```\n\nCurrently supported backends are `'active_record'` and `mongoid'`. Patches\nare always welcome.\n\n## Asset Pipeline\n\nThe installation script will automatically add the engine's assets to your\napplication's list of precompiled assets.\n\n```ruby\n# config/application.rb\nconfig.assets.enabled = true\nconfig.assets.precompile \u003c\u003c 'delayed/web/application.css'\n```\n\nThis step is skipped if your project is configured not to use the asset\npipeline.\n\n## I18n\n\nIf you want to translate flash messages, titles, or sentences you can set your own I18n translations to override defaults one:\n\n```yml\nen:\n  delayed/web:\n    views:\n      id: ID\n      status: Status\n      created_at: Created At\n      run_at: Run At\n      attempts: Attempts\n      last_error: Last Error\n```\n\n🇬🇧 English, 🇪🇸 Spanish, 🇫🇷 French, 🇩🇪 German, and 🇧🇷 Portuguese are supported. You can find the full list\n[here](https://github.com/tatey/delayed-web/blob/master/config/locales/).\n\n## Developing Locally\n\nAfter you've cloned the repository, run bundler.\n\n    bundle install\n\nMake sure the specs are passing.\n\n    rake\n\nRun the dummy rails app.\n\n    cd spec/dummy\n    rails s\n\nGo to http://localhost:3000.\n\nThe dummy rails app uses `Delayed::Web::Job::Double` as its backend.\nIt is an in-memory double of a real Delayed::Job.\n\n## Special Thanks\n\nWe're grateful for all our [contributors](https://github.com/tatey/delayed-web/graphs/contributors),\nbut we're especially grateful for contributions by the following people:\n\n* [@anthony-robin](https://github.com/anthony-robin)\n* [@coop](https://github.com/coop)\n* [@eltiare](https://github.com/eltiare)\n* [@cseelus](https://github.com/cseelus)\n* Development originally sponsored by TheBestDay Pty. Ltd.\n\n## License\n\nReleased under the MIT license. See LICENSE.\n","funding_links":[],"categories":["Ruby"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftatey%2Fdelayed-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftatey%2Fdelayed-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftatey%2Fdelayed-web/lists"}