Upgrade azure-storage-blob to use at least 2.0.0

azure-storage-blob 1.1.0 supports ruby 1.9.3 to 2.5:
https://github.com/Azure/azure-storage-ruby/blob/v1.1.0-common/common/README.md

azure-storage-blob 2.0.0 supports ruby 2.3 to 2.7:
https://github.com/Azure/azure-storage-ruby/blob/v2.0.0-blob/common/README.md
This commit is contained in:
Petrik 2021-08-23 21:17:59 +02:00
parent 2344463b97
commit 0920b02c1d
3 changed files with 3 additions and 3 deletions

@ -86,7 +86,7 @@ end
group :storage do
gem "aws-sdk-s3", require: false
gem "google-cloud-storage", "~> 1.11", require: false
gem "azure-storage-blob", require: false
gem "azure-storage-blob", "~> 2.0", require: false
gem "image_processing", "~> 1.2"
end

@ -538,7 +538,7 @@ DEPENDENCIES
activerecord-jdbcsqlite3-adapter (>= 1.3.0)
aws-sdk-s3
aws-sdk-sns
azure-storage-blob
azure-storage-blob (~> 2.0)
backburner
bcrypt (~> 3.1.11)
benchmark-ips

@ -1,6 +1,6 @@
# frozen_string_literal: true
gem "azure-storage-blob", ">= 1.1"
gem "azure-storage-blob", ">= 2.0"
require "active_support/core_ext/numeric/bytes"
require "azure/storage/blob"