aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index 3d580698de..f23ca4d9c9 100644
--- a/Gemfile
+++ b/Gemfile
@@ -27,7 +27,13 @@ gem 'sass-rails', github: 'rails/sass-rails', branch: 'master'
# require: false so bcrypt is loaded only when has_secure_password is used.
# This is to avoid Active Model (and by extension the entire framework)
# being dependent on a binary library.
-gem 'bcrypt', '~> 3.1.10', require: false
+platforms :mingw, :x64_mingw, :mswin, :mswin64 do
+ gem 'bcrypt-ruby', '~> 3.0.0', require: false
+end
+
+platforms :ruby, :jruby, :rbx do
+ gem 'bcrypt', '~> 3.1.10', require: false
+end
# This needs to be with require false to avoid it being automatically loaded by
# sprockets.
@@ -45,7 +51,7 @@ end
# Active Support.
gem 'dalli', '>= 2.2.1'
-gem 'listen', '~> 3.0.5'
+gem 'listen', '~> 3.0.5', require: false
# Active Job.
group :job do
@@ -80,7 +86,7 @@ group :test do
gem 'benchmark-ips'
end
-platforms :ruby do
+platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
gem 'nokogiri', '>= 1.6.7'
# Needed for compiling the ActionDispatch::Journey parser.