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 5a93d20 commit e5d1ef5Copy full SHA for e5d1ef5
Gemfile
@@ -6,8 +6,10 @@ eval_gemfile "Gemfile.devtools"
6
7
gemspec
8
9
+gem "dry-types", github: "dry-rb/dry-types"
10
+
11
group :test do
- gem "dry-monads"
12
+ gem "dry-monads", github: "dry-rb/dry-monads"
13
gem "i18n", require: false
14
end
15
spec/support/warnings.rb
@@ -8,3 +8,7 @@
Warning.ignore(%r{rspec/mocks})
Warning.ignore(/codacy/)
Warning[:experimental] = false if Warning.respond_to?(:[])
+if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4")
+ Warning[:strict_unused_block] = true
+end
0 commit comments