aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-10-08 11:24:16 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-10-08 11:24:16 -0300
commitee9f86e2e3e91f0b3b079b4931afa65d23b68e8a (patch)
treefd9e767592996d1dba390560092001e6c728f7ac /activejob/lib/active_job
parenta7a63492c4f1c094ec2e9c837720b0083a26fa4d (diff)
downloadrails-ee9f86e2e3e91f0b3b079b4931afa65d23b68e8a.tar.gz
rails-ee9f86e2e3e91f0b3b079b4931afa65d23b68e8a.tar.bz2
rails-ee9f86e2e3e91f0b3b079b4931afa65d23b68e8a.zip
Point to a specific version of guide to make the redirect work
Diffstat (limited to 'activejob/lib/active_job')
-rw-r--r--activejob/lib/active_job/queue_adapters/inline_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/queue_adapters/inline_adapter.rb b/activejob/lib/active_job/queue_adapters/inline_adapter.rb
index e25d88e723..08e26b7418 100644
--- a/activejob/lib/active_job/queue_adapters/inline_adapter.rb
+++ b/activejob/lib/active_job/queue_adapters/inline_adapter.rb
@@ -15,7 +15,7 @@ module ActiveJob
end
def enqueue_at(*) #:nodoc:
- raise NotImplementedError.new("Use a queueing backend to enqueue jobs in the future. Read more at http://guides.rubyonrails.org/active_job_basics.html")
+ raise NotImplementedError.new("Use a queueing backend to enqueue jobs in the future. Read more at http://guides.rubyonrails.org/v4.2.0/active_job_basics.html")
end
end
end