aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-07-31 15:53:09 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2017-07-31 15:53:09 -0500
commit16d00247f3f205225967e99a24186d8a871acde6 (patch)
tree7ea66dd1488e5d71e406efe40782fa8654c97ea0 /Gemfile
parent253757ddcb049070dfb45c7f780dfc66450b44b4 (diff)
downloadrails-16d00247f3f205225967e99a24186d8a871acde6.tar.gz
rails-16d00247f3f205225967e99a24186d8a871acde6.tar.bz2
rails-16d00247f3f205225967e99a24186d8a871acde6.zip
Bring activestorage dependencies into the general Gemfile
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 9a07908885..541f2e8c81 100644
--- a/Gemfile
+++ b/Gemfile
@@ -92,6 +92,19 @@ group :cable do
gem "sprockets-export", require: false
end
+group :storage do
+ gem "httparty"
+
+ gem "aws-sdk", "~> 2", require: false
+ gem "google-cloud-storage", "~> 1.3", require: false
+
+ # Contains fix to be able to test using StringIO
+ gem 'azure-core', git: "https://github.com/dixpac/azure-ruby-asm-core.git"
+ gem 'azure-storage', require: false
+
+ gem "mini_magick"
+end
+
# Add your own local bundler stuff.
local_gemfile = File.expand_path(".Gemfile", __dir__)
instance_eval File.read local_gemfile if File.exist? local_gemfile