From e695ef5a2a8117109cca8e6911e1266d3a37872d Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Mon, 4 Oct 2021 15:54:45 +1030 Subject: [PATCH] Rails 6.1 --- Gemfile.lock | 31 +++++++++++++++---------------- acts_as_commentable.gemspec | 4 ++-- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 7836e6f..eb0f30d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,25 +1,25 @@ PATH remote: . specs: - acts_as_commentable (6.0.0) - activerecord (~> 6.0.0) + acts_as_commentable (6.1.0) + activerecord (~> 6.1.0) GEM remote: http://rubygems.org/ specs: - activemodel (6.0.3.7) - activesupport (= 6.0.3.7) - activerecord (6.0.3.7) - activemodel (= 6.0.3.7) - activesupport (= 6.0.3.7) - activesupport (6.0.3.7) + activemodel (6.1.4.1) + activesupport (= 6.1.4.1) + activerecord (6.1.4.1) + activemodel (= 6.1.4.1) + activesupport (= 6.1.4.1) + activesupport (6.1.4.1) concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - zeitwerk (~> 2.2, >= 2.2.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) coderay (1.1.3) - concurrent-ruby (1.1.8) + concurrent-ruby (1.1.9) i18n (1.8.10) concurrent-ruby (~> 1.0) method_source (1.0.0) @@ -32,9 +32,8 @@ GEM sqlite3 (1.4.2) test-unit (3.4.1) power_assert - thread_safe (0.3.6) - tzinfo (1.2.9) - thread_safe (~> 0.1) + tzinfo (2.0.4) + concurrent-ruby (~> 1.0) zeitwerk (2.4.2) PLATFORMS diff --git a/acts_as_commentable.gemspec b/acts_as_commentable.gemspec index 8a2c963..bca85a5 100644 --- a/acts_as_commentable.gemspec +++ b/acts_as_commentable.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'acts_as_commentable' - s.version = '6.0.0' + s.version = '6.1.0' s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version= s.authors = ['Cosmin Radoi, Jack Dempsey, Xelipe, Chris Eppstein'] @@ -15,7 +15,7 @@ Gem::Specification.new do |s| s.summary = 'Plugin/gem that provides comment functionality' s.license = 'MIT' - s.add_runtime_dependency 'activerecord', '~> 6.0.0' + s.add_runtime_dependency 'activerecord', '~> 6.1.0' s.specification_version = 3 if s.respond_to? :specification_version end