# File lib/minion.rb, line 68
        def decode_json(string)
                if defined? ActiveSupport::JSON
                        ActiveSupport::JSON.decode string
                else
                        JSON.load string
                end
        end