diff options
author | Noah Silvera <noah@super.gd> | 2021-05-12 10:24:29 -0700 |
---|---|---|
committer | Noah Silvera <noah@super.gd> | 2021-05-12 10:25:26 -0700 |
commit | a99a12737593c8fe9afad09bea908198e3e02ecf (patch) | |
tree | 22cb3785a02e52c4c01276407eb6a28733b648f3 /Gemfile | |
parent | d4553b0ede70d7ce5dc2dbb2d317393abdb92bee (diff) |
Lock ExecJS version
ExecJS released a minor version update with a breaking change. We want
to lock to the previous version (2.7) for now until a fix is released.
Co-authored-by: Nick Van Doorn <nick@super.gd>
Co-authored-by: Adam Mueller <adam@super.gd>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,6 +13,10 @@ gem "rails", ENV.fetch("RAILS_VERSION") { ">0.a" } # Provides basic authentication functionality for testing parts of your engine gem "solidus_auth_devise" +# ExecJS 2.8 has a bug in it which breaks js precompiling, which is required for our features +# specs. Many other solidus extensions are also experiencing failing specs because of this. +# For now, we should lock the version of ExecJS until a new release comes out that fixes this bug. +gem "execjs", '~> 2.7.0' case ENV["DB"] when "mysql" |