aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib
diff options
context:
space:
mode:
authorPaul McMahon <paul@doorkeeper.jp>2018-07-24 11:29:31 +0900
committerPaul McMahon <paul@doorkeeper.jp>2018-07-24 11:29:31 +0900
commit7b9c19d94b18f340552f95225bf01d6f91804184 (patch)
tree9a5d11f6f226616363b6ab505b2692576a68a92a /activejob/lib
parentbd139a59405044c27bf367cde671e4bdbf7ccb57 (diff)
downloadrails-7b9c19d94b18f340552f95225bf01d6f91804184.tar.gz
rails-7b9c19d94b18f340552f95225bf01d6f91804184.tar.bz2
rails-7b9c19d94b18f340552f95225bf01d6f91804184.zip
Rails guides are now served over https
http links will be redirected to the https version, but still better to just directly link to the https version.
Diffstat (limited to 'activejob/lib')
-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 3d0b590212..ca04dc943c 100644
--- a/activejob/lib/active_job/queue_adapters/inline_adapter.rb
+++ b/activejob/lib/active_job/queue_adapters/inline_adapter.rb
@@ -16,7 +16,7 @@ module ActiveJob
end
def enqueue_at(*) #:nodoc:
- raise NotImplementedError, "Use a queueing backend to enqueue jobs in the future. Read more at http://guides.rubyonrails.org/active_job_basics.html"
+ raise NotImplementedError, "Use a queueing backend to enqueue jobs in the future. Read more at https://guides.rubyonrails.org/active_job_basics.html"
end
end
end