Skip to content

Commit

Permalink
Upgrade standard
Browse files Browse the repository at this point in the history
It turns out that in lib/ulid/rails/postgresql_type.rb we have been using an
endless range for a while now. Since no bug has been reported, I guess we don't
have any users running Ruby < 2.6.
  • Loading branch information
bquorning committed Dec 12, 2023
1 parent 303080e commit 4730801
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .standard.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ruby_version: 2.3
ruby_version: 2.6
ignore:
- 'vendor/**/*'
- 'gemfiles/vendor/**/*'
4 changes: 2 additions & 2 deletions ulid-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require "ulid/rails/version"
Gem::Specification.new do |spec|
spec.name = "ulid-rails"
spec.version = ULID::Rails::VERSION
spec.required_ruby_version = ">= 2.5.0"
spec.required_ruby_version = ">= 2.6.0"
spec.authors = ["Kazunori Kajihiro", "Zendesk"]
spec.email = ["[email protected]", "[email protected]"]

Expand Down Expand Up @@ -47,5 +47,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rubocop-minitest"
spec.add_development_dependency "standard", "~> 1.16.0"
spec.add_development_dependency "standard", "~> 1.32.0"
end

0 comments on commit 4730801

Please sign in to comment.