From 8aa742ff52b4d3374f9453b566774e921189c9f7 Mon Sep 17 00:00:00 2001 From: Mike Gunderloy Date: Wed, 2 Aug 2017 18:29:51 -0500 Subject: Add Azure gems to README --- activestorage/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/activestorage/README.md b/activestorage/README.md index f868e0d708..d60c6749b5 100644 --- a/activestorage/README.md +++ b/activestorage/README.md @@ -88,7 +88,8 @@ Variation of image attachment: 1. Run `rails activestorage:install` to create needed directories, migrations, and configuration. 2. Optional: Add `gem "aws-sdk", "~> 2"` to your Gemfile if you want to use AWS S3. 3. Optional: Add `gem "google-cloud-storage", "~> 1.3"` to your Gemfile if you want to use Google Cloud Storage. -4. Optional: Add `gem "mini_magick"` to your Gemfile if you want to use variants. +4. Optional: Add `gem 'azure-core', git: "https://github.com/dixpac/azure-ruby-asm-core.git"` and `gem 'azure-storage', require: false` to your Gemfile if you want to use Microsoft Azure. +5. Optional: Add `gem "mini_magick"` to your Gemfile if you want to use variants. ## Direct uploads -- cgit v1.2.3 From 0f2d3fb6da5867016b9036715ef55a04bf441c90 Mon Sep 17 00:00:00 2001 From: Mike Gunderloy Date: Wed, 2 Aug 2017 19:55:10 -0500 Subject: Update README.md --- activestorage/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activestorage/README.md b/activestorage/README.md index d60c6749b5..6c42941981 100644 --- a/activestorage/README.md +++ b/activestorage/README.md @@ -88,7 +88,7 @@ Variation of image attachment: 1. Run `rails activestorage:install` to create needed directories, migrations, and configuration. 2. Optional: Add `gem "aws-sdk", "~> 2"` to your Gemfile if you want to use AWS S3. 3. Optional: Add `gem "google-cloud-storage", "~> 1.3"` to your Gemfile if you want to use Google Cloud Storage. -4. Optional: Add `gem 'azure-core', git: "https://github.com/dixpac/azure-ruby-asm-core.git"` and `gem 'azure-storage', require: false` to your Gemfile if you want to use Microsoft Azure. +4. Optional: Add `gem "azure-core", git: "https://github.com/dixpac/azure-ruby-asm-core.git"` and `gem "azure-storage", require: false` to your Gemfile if you want to use Microsoft Azure. 5. Optional: Add `gem "mini_magick"` to your Gemfile if you want to use variants. ## Direct uploads -- cgit v1.2.3 From d4f0b1031940b2cd7ceb9ab5a7665f44458917cb Mon Sep 17 00:00:00 2001 From: Mike Gunderloy Date: Wed, 2 Aug 2017 20:32:09 -0500 Subject: Use release azure-core gem --- activestorage/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activestorage/README.md b/activestorage/README.md index 6c42941981..f21823340a 100644 --- a/activestorage/README.md +++ b/activestorage/README.md @@ -88,7 +88,7 @@ Variation of image attachment: 1. Run `rails activestorage:install` to create needed directories, migrations, and configuration. 2. Optional: Add `gem "aws-sdk", "~> 2"` to your Gemfile if you want to use AWS S3. 3. Optional: Add `gem "google-cloud-storage", "~> 1.3"` to your Gemfile if you want to use Google Cloud Storage. -4. Optional: Add `gem "azure-core", git: "https://github.com/dixpac/azure-ruby-asm-core.git"` and `gem "azure-storage", require: false` to your Gemfile if you want to use Microsoft Azure. +4. Optional: Add `gem "azure-core"` and `gem "azure-storage", require: false` to your Gemfile if you want to use Microsoft Azure. 5. Optional: Add `gem "mini_magick"` to your Gemfile if you want to use variants. ## Direct uploads -- cgit v1.2.3 From c5ae4e52e3630dd79e6da3355694dd560f9fba95 Mon Sep 17 00:00:00 2001 From: Mike Gunderloy Date: Wed, 2 Aug 2017 20:47:58 -0500 Subject: Tweak requires Omit azure-core (it's required by azure-storage), remove require:false to match other points. --- activestorage/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activestorage/README.md b/activestorage/README.md index f21823340a..22e77e2837 100644 --- a/activestorage/README.md +++ b/activestorage/README.md @@ -88,7 +88,7 @@ Variation of image attachment: 1. Run `rails activestorage:install` to create needed directories, migrations, and configuration. 2. Optional: Add `gem "aws-sdk", "~> 2"` to your Gemfile if you want to use AWS S3. 3. Optional: Add `gem "google-cloud-storage", "~> 1.3"` to your Gemfile if you want to use Google Cloud Storage. -4. Optional: Add `gem "azure-core"` and `gem "azure-storage", require: false` to your Gemfile if you want to use Microsoft Azure. +4. Optional: Add `gem "azure-storage"` to your Gemfile if you want to use Microsoft Azure. 5. Optional: Add `gem "mini_magick"` to your Gemfile if you want to use variants. ## Direct uploads -- cgit v1.2.3