Skip to content

Commit

Permalink
release 0.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bradrobertson committed Mar 8, 2012
1 parent dbb85d2 commit 251746f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
@@ -1,3 +1,8 @@
# 0.14.4
* March 8, 2012

- Delayed::Job Hooks now return to the previous database, rather than resetting

# 0.14.3
* Feb 21, 2012

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -122,8 +122,8 @@ from `Apartment.database_names`

### Delayed::Job

If using Rails ~> 3.2, you *must* use `delayed_job ~> 3.0`. It is more set up for Rails 3 plus has some major changes that affect the serialization of models.
Furthermore, I haven't been able to get `psych` working whatsoever as the YAML parser, so to get things to work properly, you must set the parser to `syck` *before* requiring `delayed_job`
If using Rails ~> 3.2, you *must* use `delayed_job ~> 3.0`. It has better Rails 3 support plus has some major changes that affect the serialization of models.
I haven't been able to get `psych` working whatsoever as the YAML parser, so to get things to work properly, you must explicitly set the parser to `syck` *before* requiring `delayed_job`
This can be done in the `boot.rb` of your rails config *just above* where Bundler requires the gems from the Gemfile. It will look something like:

require 'rubygems'
Expand Down
2 changes: 1 addition & 1 deletion lib/apartment/version.rb
@@ -1,3 +1,3 @@
module Apartment
VERSION = "0.14.3"
VERSION = "0.14.4"
end

0 comments on commit 251746f

Please sign in to comment.