From 3aedf7cbd323a33df75c8e63487dc8f566c9f66d Mon Sep 17 00:00:00 2001 From: Zoe Briscoe Date: Wed, 20 Jan 2021 15:09:04 -0500 Subject: [PATCH] Lock Gemfile-shopify to money 0.14.x The `Gemfile.shopify` file doesn't specify a version of money to use. I'm not entirely sure _why_ that's the case, but it seems like an unnecessary risk to me that can just lead to headaches. A particular headache I'm currently experiencing (and that's prompting me to lock this) is that Money 0.15 was just released and several tests began to fail because of that. Let's keep the minor version locked for now to prevent breakages introduced by functionality changes. --- gemfiles/Gemfile.shopify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemfiles/Gemfile.shopify b/gemfiles/Gemfile.shopify index 94988cd7a..9e5836f58 100644 --- a/gemfiles/Gemfile.shopify +++ b/gemfiles/Gemfile.shopify @@ -10,4 +10,4 @@ group :remote_test do end gem 'actionpack', '~> 6.0.0' -gem 'shopify-money', require: 'money' +gem 'shopify-money', '~> 0.14.0', require: 'money'