Skip to content

Commit

Permalink
Upgrade Ruby linters, fix new issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bquorning committed Mar 9, 2024
1 parent 1b9eb0b commit cfdbdac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/ulid/rails_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_deserializes_the_value_back_to_an_ulid
def test_auto_generate_primary_key
user = User.create!

assert user.id.is_a? String
assert_kind_of String, user.id
assert_equal 26, user.id.length

id = user.id
Expand Down
4 changes: 2 additions & 2 deletions ulid-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "pry-byebug"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rubocop-minitest"
spec.add_development_dependency "standard", "~> 1.32.0"
spec.add_development_dependency "rubocop-minitest", "0.34.5"
spec.add_development_dependency "standard", "~> 1.34.0"
end

0 comments on commit cfdbdac

Please sign in to comment.