Skip to content

Commit cebc486

Browse files
committed
Properly constrain version of meilisearch ruby gem
twiddle-wakka (~>) operator is not meant only for minor versions, its behavior depends on how you specify the version. ~> 0.28 will grab anything >= 0.28 and < 1, while ~> 0.28.0 will grab >= 0.28.0 to < 0.29. For more information, see #386 .
1 parent d0a6f1a commit cebc486

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meilisearch-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ Gem::Specification.new do |s|
3434

3535
s.required_ruby_version = '>= 3.0.0'
3636

37-
s.add_dependency 'meilisearch', '~> 0.28'
37+
s.add_dependency 'meilisearch', '~> 0.28.4'
3838
s.add_dependency 'mutex_m', '~> 0.2'
3939
end

0 commit comments

Comments
 (0)