Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0d75eee
CircleCI を GitHub Actions に移行
Oct 23, 2025
0dac470
HTTPサーバーをweblickからpumaに変更
Oct 23, 2025
f01f7f6
Update last_commit_year > 2025
Oct 23, 2025
5d2ca76
Update jQuery 3.7
Oct 24, 2025
9900622
表示する項目を設定が動作していなかったので修正
Oct 24, 2025
e4f5b6d
docker上での動作判定をOS判定の先頭に変更
Oct 24, 2025
528bd01
Securty fix
Oct 25, 2025
4b3e38c
WebUIの認証をDigestからBasicに変更
Oct 25, 2025
81bb481
Merge pull request #1 from ponponusa/feature/basic-auth
ponponusa Oct 25, 2025
a40d335
Merge pull request #47 from ponponusa/develop
Rumia-Channel Oct 27, 2025
2a369e8
bootsnapを導入
Oct 27, 2025
aa56398
Yamlロード/I/O・ERB・ログの改善
Oct 27, 2025
de79ce8
add_dc_subject_to_epub をオンメモリ処理に
Oct 27, 2025
3fd26ae
テキスト変換処理をまとめる
Oct 27, 2025
9123fd5
update Gemfile.lock
Oct 27, 2025
3ef946d
Merge pull request #2 from ponponusa/feature/convert-novel-optimize
ponponusa Oct 27, 2025
035c9ce
YJIT を有効化
Oct 27, 2025
85ddb39
Merge pull request #3 from ponponusa/feature/convert-novel-optimize
ponponusa Oct 27, 2025
672373e
Merge pull request #48 from ponponusa/develop
Rumia-Channel Oct 28, 2025
9156edf
resourcesのファイルを整理
Oct 28, 2025
4ca83c4
window.action に DataTable インスタンスが渡っていなかったので修正
Oct 28, 2025
c189166
Merge pull request #4 from ponponusa/fix/select-all-is-not-working
ponponusa Oct 28, 2025
033029b
update LICENCE.md
Oct 28, 2025
5cc559b
update README.md
Oct 28, 2025
50b220a
update version.rb
Oct 28, 2025
87907a6
fix style path
Oct 28, 2025
79f8331
Merge pull request #5 from ponponusa/document/update-2025-10
ponponusa Oct 28, 2025
1027803
Merge pull request #49 from ponponusa/develop
Rumia-Channel Oct 28, 2025
ce8d299
DataTables 2.x対応のスタイルとスクリプトの更新
Rumia-Channel Oct 28, 2025
be2dd6c
YAMLファイルの読み込み時にSystemCallErrorを処理するための例外処理を追加
Rumia-Channel Oct 28, 2025
791ab01
Shift + A や Ctrl + A による小説選択処理の動作を復旧
Rumia-Channel Oct 28, 2025
cdd4252
謝辞を私のリポジトリ向けに修正。
Rumia-Channel Oct 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 0 additions & 49 deletions .circleci/config.yml

This file was deleted.

63 changes: 63 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: CI

on:
push:
branches: [ "**" ]
pull_request:

jobs:
build:
runs-on: ubuntu-latest

env:
BUNDLE_JOBS: "1"
BUNDLE_RETRY: "3"
BUNDLE_PATH: vendor/bundle

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Ruby 3.4
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"

- name: Install bundler 2.7.2
run: gem install bundler:2.7.2

- name: Cache bundle
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-narou-bundle-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-narou-bundle-

- name: Bundle install
run: |
bundle _2.7.2_ config set path "${BUNDLE_PATH}"
bundle _2.7.2_ check || bundle _2.7.2_ install

- name: Run RSpec
run: |
mkdir -p test_results/rspec
# CircleCI のテスト分割は GHA ではそのまま使えないため、単純実行に置き換え
bundle _2.7.2_ exec rspec \
--format RspecJunitFormatter \
--out test_results/rspec/results.xml \
--format progress

- name: Upload test results (JUnit XML)
if: always()
uses: actions/upload-artifact@v4
with:
name: rspec-junit
path: test_results

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage
Loading