Skip to content

Commit 9cbb7e9

Browse files
authored
Rails 7.0にアップデート (#1848)
* add date_validator gem * use Rails 7.0 * run yarn install * fix CI * use TimeWithZone#to_fs(:db) * update Ruby to 3.1.3 * update config files * fix typo * bump version
1 parent 678b494 commit 9cbb7e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+746
-585
lines changed

.github/workflows/rubyonrails.yml

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
uses: ruby/setup-ruby@v1
4141
with:
4242
bundler-cache: true
43+
- name: Install dependencies
44+
run: yarn install
4345
# Add or replace test runners here
4446
- name: Start containers
4547
run: cp .env.test.ci .env.test && cp .env.test .env && cp docker-compose.ci.yml docker-compose.override.yml && docker-compose up -d solr tika

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.1.4-bullseye as builder
1+
FROM ruby:3.1.4 as builder
22
LABEL maintainer="[email protected]"
33

44
ARG http_proxy
@@ -8,7 +8,7 @@ COPY Gemfile /
88
COPY Gemfile.lock /
99
RUN apt-get update -qq && apt-get install -y libpq-dev && bundle install
1010

11-
FROM ruby:3.1.4-bullseye
11+
FROM ruby:3.1.4
1212
LABEL maintainer="[email protected]"
1313

1414
ARG http_proxy

Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
ruby '3.1.4'
55

66
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
7-
gem 'rails', '~> 6.1.6'
7+
gem 'rails', '~> 7.0.4'
88
# Use postgresql as the database for Active Record
99
gem 'pg', '~> 1.4.6'
1010
# Use Puma as the app server
@@ -88,7 +88,7 @@ gem 'resync' # , github: 'nabeta/resync', branch: 'add-datetime'
8888
gem 'pretender'
8989
gem 'caxlsx'
9090
gem 'caxlsx_rails'
91-
gem 'rails-i18n', '~> 6.0'
91+
gem 'rails-i18n', '~> 7.0'
9292
gem 'sitemap_generator'
9393
gem 'rss'
9494
gem 'rdf-turtle', require: 'rdf/turtle'

Gemfile.lock

+66-60
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,47 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actioncable (6.1.7.6)
5-
actionpack (= 6.1.7.6)
6-
activesupport (= 6.1.7.6)
4+
actioncable (7.0.8)
5+
actionpack (= 7.0.8)
6+
activesupport (= 7.0.8)
77
nio4r (~> 2.0)
88
websocket-driver (>= 0.6.1)
9-
actionmailbox (6.1.7.6)
10-
actionpack (= 6.1.7.6)
11-
activejob (= 6.1.7.6)
12-
activerecord (= 6.1.7.6)
13-
activestorage (= 6.1.7.6)
14-
activesupport (= 6.1.7.6)
9+
actionmailbox (7.0.8)
10+
actionpack (= 7.0.8)
11+
activejob (= 7.0.8)
12+
activerecord (= 7.0.8)
13+
activestorage (= 7.0.8)
14+
activesupport (= 7.0.8)
1515
mail (>= 2.7.1)
16-
actionmailer (6.1.7.6)
17-
actionpack (= 6.1.7.6)
18-
actionview (= 6.1.7.6)
19-
activejob (= 6.1.7.6)
20-
activesupport (= 6.1.7.6)
16+
net-imap
17+
net-pop
18+
net-smtp
19+
actionmailer (7.0.8)
20+
actionpack (= 7.0.8)
21+
actionview (= 7.0.8)
22+
activejob (= 7.0.8)
23+
activesupport (= 7.0.8)
2124
mail (~> 2.5, >= 2.5.4)
25+
net-imap
26+
net-pop
27+
net-smtp
2228
rails-dom-testing (~> 2.0)
23-
actionpack (6.1.7.6)
24-
actionview (= 6.1.7.6)
25-
activesupport (= 6.1.7.6)
26-
rack (~> 2.0, >= 2.0.9)
29+
actionpack (7.0.8)
30+
actionview (= 7.0.8)
31+
activesupport (= 7.0.8)
32+
rack (~> 2.0, >= 2.2.4)
2733
rack-test (>= 0.6.3)
2834
rails-dom-testing (~> 2.0)
2935
rails-html-sanitizer (~> 1.0, >= 1.2.0)
30-
actiontext (6.1.7.6)
31-
actionpack (= 6.1.7.6)
32-
activerecord (= 6.1.7.6)
33-
activestorage (= 6.1.7.6)
34-
activesupport (= 6.1.7.6)
36+
actiontext (7.0.8)
37+
actionpack (= 7.0.8)
38+
activerecord (= 7.0.8)
39+
activestorage (= 7.0.8)
40+
activesupport (= 7.0.8)
41+
globalid (>= 0.6.0)
3542
nokogiri (>= 1.8.5)
36-
actionview (6.1.7.6)
37-
activesupport (= 6.1.7.6)
43+
actionview (7.0.8)
44+
activesupport (= 7.0.8)
3845
builder (~> 3.1)
3946
erubi (~> 1.4)
4047
rails-dom-testing (~> 2.0)
@@ -44,27 +51,26 @@ GEM
4451
activemodel (>= 5.2.0)
4552
activestorage (>= 5.2.0)
4653
activesupport (>= 5.2.0)
47-
activejob (6.1.7.6)
48-
activesupport (= 6.1.7.6)
54+
activejob (7.0.8)
55+
activesupport (= 7.0.8)
4956
globalid (>= 0.3.6)
50-
activemodel (6.1.7.6)
51-
activesupport (= 6.1.7.6)
52-
activerecord (6.1.7.6)
53-
activemodel (= 6.1.7.6)
54-
activesupport (= 6.1.7.6)
55-
activestorage (6.1.7.6)
56-
actionpack (= 6.1.7.6)
57-
activejob (= 6.1.7.6)
58-
activerecord (= 6.1.7.6)
59-
activesupport (= 6.1.7.6)
57+
activemodel (7.0.8)
58+
activesupport (= 7.0.8)
59+
activerecord (7.0.8)
60+
activemodel (= 7.0.8)
61+
activesupport (= 7.0.8)
62+
activestorage (7.0.8)
63+
actionpack (= 7.0.8)
64+
activejob (= 7.0.8)
65+
activerecord (= 7.0.8)
66+
activesupport (= 7.0.8)
6067
marcel (~> 1.0)
6168
mini_mime (>= 1.1.0)
62-
activesupport (6.1.7.6)
69+
activesupport (7.0.8)
6370
concurrent-ruby (~> 1.0, >= 1.0.2)
6471
i18n (>= 1.6, < 2)
6572
minitest (>= 5.1)
6673
tzinfo (~> 2.0)
67-
zeitwerk (~> 2.3)
6874
acts-as-taggable-on (10.0.0)
6975
activerecord (>= 6.1, < 7.2)
7076
acts_as_list (1.1.0)
@@ -290,21 +296,20 @@ GEM
290296
rack
291297
rack-test (2.1.0)
292298
rack (>= 1.3)
293-
rails (6.1.7.6)
294-
actioncable (= 6.1.7.6)
295-
actionmailbox (= 6.1.7.6)
296-
actionmailer (= 6.1.7.6)
297-
actionpack (= 6.1.7.6)
298-
actiontext (= 6.1.7.6)
299-
actionview (= 6.1.7.6)
300-
activejob (= 6.1.7.6)
301-
activemodel (= 6.1.7.6)
302-
activerecord (= 6.1.7.6)
303-
activestorage (= 6.1.7.6)
304-
activesupport (= 6.1.7.6)
299+
rails (7.0.8)
300+
actioncable (= 7.0.8)
301+
actionmailbox (= 7.0.8)
302+
actionmailer (= 7.0.8)
303+
actionpack (= 7.0.8)
304+
actiontext (= 7.0.8)
305+
actionview (= 7.0.8)
306+
activejob (= 7.0.8)
307+
activemodel (= 7.0.8)
308+
activerecord (= 7.0.8)
309+
activestorage (= 7.0.8)
310+
activesupport (= 7.0.8)
305311
bundler (>= 1.15.0)
306-
railties (= 6.1.7.6)
307-
sprockets-rails (>= 2.0.0)
312+
railties (= 7.0.8)
308313
rails-controller-testing (1.0.5)
309314
actionpack (>= 5.0.1.rc1)
310315
actionview (>= 5.0.1.rc1)
@@ -316,19 +321,20 @@ GEM
316321
rails-html-sanitizer (1.6.0)
317322
loofah (~> 2.21)
318323
nokogiri (~> 1.14)
319-
rails-i18n (6.0.0)
324+
rails-i18n (7.0.8)
320325
i18n (>= 0.7, < 2)
321-
railties (>= 6.0.0, < 7)
326+
railties (>= 6.0.0, < 8)
322327
rails_autolink (1.1.8)
323328
actionview (> 3.1)
324329
activesupport (> 3.1)
325330
railties (> 3.1)
326-
railties (6.1.7.6)
327-
actionpack (= 6.1.7.6)
328-
activesupport (= 6.1.7.6)
331+
railties (7.0.8)
332+
actionpack (= 7.0.8)
333+
activesupport (= 7.0.8)
329334
method_source
330335
rake (>= 12.2)
331336
thor (~> 1.0)
337+
zeitwerk (~> 2.5)
332338
rake (13.1.0)
333339
rb-fsevent (0.11.2)
334340
rb-inotify (0.10.1)
@@ -522,9 +528,9 @@ DEPENDENCIES
522528
puma (~> 5.0)
523529
pundit
524530
rack-mini-profiler (~> 2.0)
525-
rails (~> 6.1.6)
531+
rails (~> 7.0.4)
526532
rails-controller-testing
527-
rails-i18n (~> 6.0)
533+
rails-i18n (~> 7.0)
528534
rails_autolink
529535
rdf-turtle
530536
rdf-vocab

bin/rails

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
#!/usr/bin/env ruby
2-
begin
3-
load File.expand_path('../spring', __FILE__)
4-
rescue LoadError => e
5-
raise unless e.message.include?('spring')
6-
end
7-
APP_PATH = File.expand_path('../config/application', __dir__)
8-
require_relative '../config/boot'
9-
require 'rails/commands'
2+
APP_PATH = File.expand_path("../config/application", __dir__)
3+
require_relative "../config/boot"
4+
require "rails/commands"

bin/rake

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
#!/usr/bin/env ruby
2-
begin
3-
load File.expand_path('../spring', __FILE__)
4-
rescue LoadError => e
5-
raise unless e.message.include?('spring')
6-
end
7-
require_relative '../config/boot'
8-
require 'rake'
2+
require_relative "../config/boot"
3+
require "rake"
94
Rake.application.run

bin/setup

+13-16
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,33 @@
11
#!/usr/bin/env ruby
2-
require 'fileutils'
3-
include FileUtils
2+
require "fileutils"
43

54
# path to your application root.
6-
APP_ROOT = File.expand_path('..', __dir__)
5+
APP_ROOT = File.expand_path("..", __dir__)
76

87
def system!(*args)
98
system(*args) || abort("\n== Command #{args} failed ==")
109
end
1110

12-
chdir APP_ROOT do
13-
# This script is a starting point to setup your application.
11+
FileUtils.chdir APP_ROOT do
12+
# This script is a way to set up or update your development environment automatically.
13+
# This script is idempotent, so that you can run it at any time and get an expectable outcome.
1414
# Add necessary setup steps to this file.
1515

16-
puts '== Installing dependencies =='
17-
system! 'gem install bundler --conservative'
18-
system('bundle check') || system!('bundle install')
19-
20-
# Install JavaScript dependencies if using Yarn
21-
# system('bin/yarn')
16+
puts "== Installing dependencies =="
17+
system! "gem install bundler --conservative"
18+
system("bundle check") || system!("bundle install")
2219

2320
# puts "\n== Copying sample files =="
24-
# unless File.exist?('config/database.yml')
25-
# cp 'config/database.yml.sample', 'config/database.yml'
21+
# unless File.exist?("config/database.yml")
22+
# FileUtils.cp "config/database.yml.sample", "config/database.yml"
2623
# end
2724

2825
puts "\n== Preparing database =="
29-
system! 'bin/rails db:setup'
26+
system! "bin/rails db:prepare"
3027

3128
puts "\n== Removing old logs and tempfiles =="
32-
system! 'bin/rails log:clear tmp:clear'
29+
system! "bin/rails log:clear tmp:clear"
3330

3431
puts "\n== Restarting application server =="
35-
system! 'bin/rails restart'
32+
system! "bin/rails restart"
3633
end

config/application.rb

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
require_relative 'boot'
1+
require_relative "boot"
22

3-
require 'rails/all'
3+
require "rails/all"
44
require 'csv'
55
require 'nkf'
66
require 'rss'
@@ -16,10 +16,13 @@ class Application < Rails::Application
1616
# Initialize configuration defaults for originally generated Rails version.
1717
config.load_defaults 6.1
1818

19-
# Settings in config/environments/* take precedence over those specified here.
20-
# Application configuration can go into files in config/initializers
21-
# -- all .rb files in that directory are automatically loaded after loading
22-
# the framework and any gems in your application.
19+
# Configuration for the application, engines, and railties goes here.
20+
#
21+
# These settings can be overridden in specific environments using the files
22+
# in config/environments, which are processed later.
23+
#
24+
# config.time_zone = "Central Time (US & Canada)"
25+
# config.eager_load_paths << Rails.root.join("extras")
2326
default_locale = (ENV['ENJU_LEAF_DEFAULT_LOCALE'] || 'en').to_sym
2427
config.i18n.default_locale = default_locale
2528
config.i18n.available_locales = [default_locale, :ja, :en].uniq

config/boot.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
1+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
22

33
require "bundler/setup" # Set up gems listed in the Gemfile.
44
require "bootsnap/setup" # Speed up boot time by caching expensive operations.

config/environments/development.rb

+5-11
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,18 @@
1414
# Show full error reports.
1515
config.consider_all_requests_local = true
1616

17+
# Enable server timing
18+
config.server_timing = true
19+
1720
# Enable/disable caching. By default caching is disabled.
1821
# Run rails dev:cache to toggle caching.
19-
if Rails.root.join('tmp', 'caching-dev.txt').exist?
22+
if Rails.root.join("tmp/caching-dev.txt").exist?
2023
config.action_controller.perform_caching = true
2124
config.action_controller.enable_fragment_cache_logging = true
2225

2326
config.cache_store = :memory_store
2427
config.public_file_server.headers = {
25-
'Cache-Control' => "public, max-age=#{2.days.to_i}"
28+
"Cache-Control" => "public, max-age=#{2.days.to_i}"
2629
}
2730
else
2831
config.action_controller.perform_caching = false
@@ -53,11 +56,6 @@
5356
# Highlight code that triggered database queries in logs.
5457
config.active_record.verbose_query_logs = true
5558

56-
# Debug mode disables concatenation and preprocessing of assets.
57-
# This option may cause significant delays in view rendering with a large
58-
# number of complex assets.
59-
config.assets.debug = true
60-
6159
# Suppress logger output for asset requests.
6260
config.assets.quiet = true
6361

@@ -67,10 +65,6 @@
6765
# Annotate rendered view with file names.
6866
# config.action_view.annotate_rendered_view_with_filenames = true
6967

70-
# Use an evented file watcher to asynchronously detect changes in source code,
71-
# routes, locales, etc. This feature depends on the listen gem.
72-
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
73-
7468
# Uncomment if you wish to allow Action Cable access from any origin.
7569
# config.action_cable.disable_request_forgery_protection = true
7670

0 commit comments

Comments
 (0)