Skip to content

Commit edd07f2

Browse files
authored
Upgrade to rails 7.0.1 (#64)
* Upgrade to Ruby 3.1.0. * Upgrade to Rails 7.0.1. * Correct app creation command and shell info.
1 parent 86c293d commit edd07f2

33 files changed

+377
-389
lines changed

.gitattributes

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2+
3+
# Mark the database schema as having been generated.
4+
db/schema.rb linguist-generated
5+
6+
# Mark any vendored files as having been vendored.
7+
vendor/* linguist-vendored

.gitignore

+6-11
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,17 @@
1313
!/log/.keep
1414
!/tmp/.keep
1515

16-
# Ignore uploaded files in development.
17-
/storage/*
18-
!/storage/.keep
16+
# Ignore pidfiles, but keep the directory.
17+
/tmp/pids/*
18+
!/tmp/pids/
19+
!/tmp/pids/.keep
20+
1921

2022
/public/assets
21-
.byebug_history
2223

2324
# Ignore master key for decrypting credentials and more.
2425
/config/master.key
2526

26-
/public/packs
27-
/public/packs-test
28-
/node_modules
29-
/yarn-error.log
30-
yarn-debug.log*
31-
.yarn-integrity
32-
27+
# Ignore VSCode specific files.
3328
**/.vscode
3429
**/.metals

Gemfile

+12-18
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,33 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

66
ruby '3.0.2'
77

8-
gem 'rails', '~> 6.1', '>= 6.1.4.1'
8+
gem 'rails', git: 'https://github.com/rails/rails'
99

1010
# Reduces boot times through caching; required in config/boot.rb
11-
gem 'bootsnap', '>= 1.4.4', require: false
11+
gem 'bootsnap', '>= 1.9.3', require: false
1212

13-
gem 'graphql', '~> 1.12.4'
14-
15-
gem 'jbuilder', '~> 2.7'
13+
gem 'graphql', '~> 1.13.2'
1614

1715
gem 'pg', '~> 1.2', '>= 1.2.3'
18-
gem 'puma', '~> 4.3.9'
16+
gem 'puma', '~> 5.0'
1917

2018
gem 'rack-cors', '~> 1.0'
2119

22-
gem 'sass-rails', '>= 6'
20+
gem 'sprockets-rails', '~> 3.4', '>= 3.4.2'
21+
22+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
23+
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
2324

2425
group :development, :test do
25-
# gem 'byebug', '~> 11.1', '>= 11.1.3'
26+
gem "debug", platforms: %i[ mri mingw x64_mingw ]
2627

27-
gem 'rspec-rails', '~> 4.0', '>= 4.0.1'
28+
gem 'rspec-rails', '~> 5.0.2'
2829
end
2930

3031
group :development do
3132
gem 'graphiql-rails', '~> 1.7'
3233

33-
gem 'listen', '~> 3.3'
34-
35-
gem 'rack-mini-profiler', '~> 2.3', '>= 2.3.1'
34+
gem 'rack-mini-profiler', '~> 2.3', '>= 2.3.3'
3635

37-
gem 'spring', '~> 2.1', '>= 2.1.1'
38-
39-
gem 'web-console', '>= 4.1.0'
36+
gem 'web-console', '~> 4.2'
4037
end
41-
42-
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
43-
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

0 commit comments

Comments
 (0)