Merge pull request #2398 from ritikesh/0-10-stable

Add support for rails 6.1
This commit is contained in:
Benjamin Fleischer 2020-12-08 20:55:50 -05:00 committed by GitHub
commit 11574298c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.1'
rails_versions = ['>= 4.1', '< 6.1']
rails_versions = ['>= 4.1', '< 6.2']
spec.add_runtime_dependency 'activemodel', rails_versions
# 'activesupport', rails_versions
# 'builder'

View File

@ -2,6 +2,6 @@
module ActiveModel
class Serializer
VERSION = '0.10.11'.freeze
VERSION = '0.10.11'
end
end