diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-12-16 09:17:25 -0700 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-12-16 09:19:17 -0700 |
commit | 3dd1f554ee0769227827fa397bf52a61bdae4d99 (patch) | |
tree | 6e62df6a93bd29133da0b9d53634234b07bac144 | |
parent | b7a7e82207efd24d685fc1325fb523f047ca2ce1 (diff) | |
download | rails-3dd1f554ee0769227827fa397bf52a61bdae4d99.tar.gz rails-3dd1f554ee0769227827fa397bf52a61bdae4d99.tar.bz2 rails-3dd1f554ee0769227827fa397bf52a61bdae4d99.zip |
Ensure we install the database backend gems on Windows
platform `:ruby` is only MRI on Linux or Mac. Windows MRI shows up as
`:mswin` or `:mswin64` depending on if it was installed as 32 or 64 bit. I
am unsure if this will cause conflicts with JRuby on Windows, but I don't
have the means to test this at the moment.
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ group :test do gem 'benchmark-ips' end -platforms :ruby do +platforms :ruby, :mswin, :mswin64 do gem 'nokogiri', '>= 1.6.7' # Needed for compiling the ActionDispatch::Journey parser. |