We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f4a3d7 commit 4f8b9afCopy full SHA for 4f8b9af
ndr_error.gemspec
@@ -45,6 +45,13 @@ Gem::Specification.new do |s|
45
# https://bugs.ruby-lang.org/issues/19371
46
s.add_development_dependency 'psych', '< 5'
47
48
+ # Workaround build issue on GitHub Actions with ruby <= 3.1 when installing sass-embedded
49
+ # Versions 1.77.0 and above require ruby >= 3.2 for packaged x86_64-linux binaries
50
+ # but say they're compatible with ruby 3.1.
51
+ # 1.76.0 has a bug that was fixed in 1.77.1, which we can't use yet.
52
+ # https://github.com/sass/dart-sass/issues/2239
53
+ s.add_development_dependency 'sass-embedded', '~> 1.75.0' if RUBY_VERSION.start_with?('3.1')
54
+
55
s.add_development_dependency 'mocha'
56
s.add_development_dependency 'test-unit', '~> 3.0'
57
0 commit comments