Skip to content

Commit

Permalink
Add support for ruby 3.3 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieujobin authored Dec 29, 2023
1 parent 6227859 commit 2b03a42
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 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
8 changes: 5 additions & 3 deletions dynamic_form.gemspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Gem::Specification.new do |s|
s.name = %q{dynamic_form}
s.version = "1.3.0"
s.version = "1.3.1"

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 2b03a42

Please sign in to comment.