From 2b03a42bcb6ef294b6672678245d3070791008ad Mon Sep 17 00:00:00 2001 From: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com> Date: Fri, 29 Dec 2023 19:23:47 +0900 Subject: [PATCH] Add support for ruby 3.3 (#3) --- .github/workflows/tests.yml | 2 +- dynamic_form.gemspec | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4b90004..2d599ff 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 diff --git a/dynamic_form.gemspec b/dynamic_form.gemspec index 31c4cbb..c3348c7 100644 --- a/dynamic_form.gemspec +++ b/dynamic_form.gemspec @@ -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" ] @@ -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}