Sha256: dd42976c7fc8da6a954c8462769c1ef9b5665b4682dfb676db7df6f433efbb51

Contents?: true

Size: 1.74 KB

Versions: 1

Compression:

Stored size: 1.74 KB

Contents

# DelayedJob ActiveRecord Backend [![Build Status](http://travis-ci.org/collectiveidea/delayed_job_active_record.png)](https://travis-ci.org/collectiveidea/delayed_job_active_record) [![Dependency Status](https://gemnasium.com/collectiveidea/delayed_job_active_record.png)](https://gemnasium.com/collectiveidea/delayed_job_active_record)

The only difference in drewda_delayed_job_active_record is in `lib/delayed/backend/active_record.rb`: 

    attr_accessible ... :unique_id, :is_locked

This makes it compatible with drewda_delayed_job.

## Installation

Add the gem to your Gemfile:

    gem 'delayed_job_active_record'

Run `bundle install`.

If you're using Rails, run the generator to create the migration for the delayed_job table.

    rails g delayed_job:active_record
    rake db:migrate
    
## Upgrading from 2.x to 3.0.0

If you're upgrading from Delayed Job 2.x, run the upgrade generator to create a migration to add a column to your delayed_jobs table.

    rails g delayed_job:upgrade
    rake db:migrate

That's it. Use [delayed_job as normal](http://github.com/collectiveidea/delayed_job).

## How to contribute

If you find what looks like a bug:

* Search the [mailing list](http://groups.google.com/group/delayed_job) to see if anyone else had the same issue.
* Check the [GitHub issue tracker](http://github.com/collectiveidea/delayed_job_active_record/issues/) to see if anyone else has reported issue.
* If you don't see anything, create an issue with information on how to reproduce it.

If you want to contribute an enhancement or a fix:

* Fork the project on github.
* Make your changes with tests.
* Commit the changes without making changes to the Rakefile or any other files that aren't related to your enhancement or fix
* Send a pull request.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
drewda_delayed_job_active_record-0.3.2 README.md