Skip to content

Commit

Permalink
allow ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieujobin committed Dec 29, 2023
1 parent 6227859 commit b199ead
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
gemfile: ['rails_7.1', 'rails_7.0', 'rails_6.1']
ruby: [3.2, 3.1, '3.0', 2.7]
ruby: [3.3, 3.2, 3.1, '3.0', 2.7]
include:
- gemfile: rails_6.0
ruby: 2.7
Expand Down
6 changes: 4 additions & 2 deletions dynamic_form.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Gem::Specification.new do |s|
s.version = "1.3.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_ruby_version = ">= 2.7.0", "< 3.3"
s.required_ruby_version = ">= 2.7.0", "< 3.4"
s.authors = ["Joel Moss"]
s.date = %q{2010-09-05}
s.description = %q{DynamicForm holds a few helper methods to help you deal with your Rails3 models. It includes the stripped out methods from Rails 2; error_message_on and error_messages_for. It also brings in the functionality of the custom-err-messages plugin, which provides more flexibility over your model error messages.}
s.email = %q{joel@developwithstyle.com}
s.email = %q{mathieu.jobin@gmail.com}
s.extra_rdoc_files = [
"README.md"
]
Expand All @@ -30,7 +30,9 @@ Gem::Specification.new do |s|
"test/dynamic_form_test.rb",
"test/test_helper.rb"
]
s.homepage = %q{http://github.com/rails/dynamic_form}
s.homepage = %q{http://github.com/joelmoss/dynamic_form}
s.homepage = %q{https://github.com/payrollhero/dynamic_form}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
Expand Down

0 comments on commit b199ead

Please sign in to comment.