-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Gemfile
44 lines (34 loc) · 1.21 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
source 'https://rubygems.org'
# Replace 'git' with 'https' protocol
git_source(:github) {|repo_name| 'https://github.com/' + repo_name }
gem 'jekyll'
gem 'rake' # Enable Rakefile to run tasks
gem 'truncato' # https://github.com/jorgemanrubia/truncato
gem 'ruby-openai' # Translate project info from JA to EN
# Declare to install bundled gems to fix warnings:
# https://www.ruby-lang.org/ja/news/2023/12/25/ruby-3-3-0-released/
gem 'csv'
gem 'base64'
group :jekyll_plugins do
gem 'jekyll-feed'
gem 'jekyll-include-cache'
gem 'jekyll-minifier'
gem 'jekyll-sitemap'
# No need this gem because we build by GitHub Actions and
# serve the built results (static files) on GitHub Pages.
# gem 'github-pages'
end
# Gems to use in Development & CI (GitHub Actions)
group :development, :test do
gem 'html-proofer'
end
# Windows and JRuby does not include zoneinfo files,
# so bundle the tzinfo-data gem and associated library.
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
gem 'tzinfo', '~> 1.2'
gem 'tzinfo-data'
end
# Performance-booster for watching directories on Windows
gem 'wdm', '~> 0.1.1', :install_if => Gem.win_platform?
# Enable to edit jr.mitou.org on Codespaces
gem 'mini_racer'