Skip to content

Commit 454aa41

Browse files
committed
Update Ruby version to 3.3.4 and gem dependencies
1 parent 5d01c41 commit 454aa41

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby 2.7.3
1+
ruby 3.3.4

Gemfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
source 'https://rubygems.org'
22

3-
ruby '>= 2.4.0'
3+
ruby '>= 2.4.0', '<= 3.3.5'
44

5-
gem 'activerecord', '>= 4.2.5', '< 6', require: false
5+
gem 'activerecord', '>= 4.2.5', '<= 8.0.0', require: false
66
gem 'rake', require: false
77

88
group :development do
@@ -29,7 +29,6 @@ group :development, :test do
2929
gem 'coveralls'
3030

3131
gem 'overcommit'
32-
gem 'ruby_dep', '1.5.0'
3332

3433
platforms :mri, :mingw do
3534
gem 'pry', require: false
@@ -38,6 +37,6 @@ group :development, :test do
3837
end
3938

4039
group :test do
41-
gem 'files', require: false
40+
gem "files", git: "https://github.com/rodrigotoledo/files"
4241
gem 'git', require: false
4342
end

annotate.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Gem::Specification.new do |s|
77
s.name = 'annotate'
88
s.version = Annotate.version
99

10-
s.required_ruby_version = '>= 2.4.0'
10+
s.required_ruby_version = '>= 2.4.0', '<= 3.3.5'
1111
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
12-
s.authors = ['Alex Chaffee', 'Cuong Tran', 'Marcos Piccinini', 'Turadg Aleahmad', 'Jon Frisby']
12+
s.authors = ['Alex Chaffee', 'Cuong Tran', 'Marcos Piccinini', 'Turadg Aleahmad', 'Jon Frisby', 'RToledo Dev']
1313
s.description = 'Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.'
14-
s.email = ['alex@stinky.com', 'cuong.tran@gmail.com', 'x@nofxx.com', 'turadg@aleahmad.net', 'jon@cloudability.com']
14+
s.email = ['alex@stinky.com', 'cuong.tran@gmail.com', 'x@nofxx.com', 'turadg@aleahmad.net', 'jon@cloudability.com', 'rodrigo@rtoledo.inf.br']
1515
s.executables = ['annotate']
1616
s.extra_rdoc_files = ['README.md', 'CHANGELOG.md']
1717
s.files = `git ls-files -z LICENSE.txt *.md *.gemspec bin lib`.split("\x0")
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
2323

2424
s.specification_version = 4 if s.respond_to? :specification_version
2525
s.add_runtime_dependency(%q<rake>, '>= 10.4', '< 14.0')
26-
s.add_runtime_dependency(%q<activerecord>, ['>= 3.2', '< 8.0'])
26+
s.add_runtime_dependency(%q<activerecord>, ['>= 3.2', '<= 8.0.0'])
2727

2828
s.metadata = {
2929
"bug_tracker_uri" => "https://github.com/ctran/annotate_models/issues/",

0 commit comments

Comments
 (0)