diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-03-10 00:11:00 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-10 00:11:00 +0900 |
commit | b075bbdc69f1288539db9dd9b6bb2b55bf0c58e6 (patch) | |
tree | efb9d44b2381ba96ab09a53bbeaa8bd655c2bd55 /activejob | |
parent | 35efe44f5379b031e6d4abab7b0a8c280e31b640 (diff) | |
parent | 027e492b6f873c58b1a531925f3a4dc6726ecc26 (diff) | |
download | rails-b075bbdc69f1288539db9dd9b6bb2b55bf0c58e6.tar.gz rails-b075bbdc69f1288539db9dd9b6bb2b55bf0c58e6.tar.bz2 rails-b075bbdc69f1288539db9dd9b6bb2b55bf0c58e6.zip |
Merge pull request #35552 from abhaynikam/fix-remaining-set-of-links-in-gemspec
Update some more links to https
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/activejob.gemspec | 2 | ||||
-rw-r--r-- | activejob/lib/active_job/queue_adapters.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/activejob/activejob.gemspec b/activejob/activejob.gemspec index c3c0447d8e..aeffe55af6 100644 --- a/activejob/activejob.gemspec +++ b/activejob/activejob.gemspec @@ -15,7 +15,7 @@ Gem::Specification.new do |s| s.author = "David Heinemeier Hansson" s.email = "david@loudthinking.com" - s.homepage = "http://rubyonrails.org" + s.homepage = "https://rubyonrails.org" s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*"] s.require_path = "lib" diff --git a/activejob/lib/active_job/queue_adapters.rb b/activejob/lib/active_job/queue_adapters.rb index 525e79e302..a4b7eb86f1 100644 --- a/activejob/lib/active_job/queue_adapters.rb +++ b/activejob/lib/active_job/queue_adapters.rb @@ -10,11 +10,11 @@ module ActiveJob # * {Que}[https://github.com/chanks/que] # * {queue_classic}[https://github.com/QueueClassic/queue_classic] # * {Resque}[https://github.com/resque/resque] - # * {Sidekiq}[http://sidekiq.org] + # * {Sidekiq}[https://sidekiq.org] # * {Sneakers}[https://github.com/jondot/sneakers] # * {Sucker Punch}[https://github.com/brandonhilkert/sucker_punch] - # * {Active Job Async Job}[http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters/AsyncAdapter.html] - # * {Active Job Inline}[http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters/InlineAdapter.html] + # * {Active Job Async Job}[https://api.rubyonrails.org/classes/ActiveJob/QueueAdapters/AsyncAdapter.html] + # * {Active Job Inline}[https://api.rubyonrails.org/classes/ActiveJob/QueueAdapters/InlineAdapter.html] # * Please Note: We are not accepting pull requests for new adapters. See the {README}[link:files/activejob/README_md.html] for more details. # # === Backends Features |