rails-mermaid_erd_markdown 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS.md +1 -0
- data/.github/workflows/CI.yml +42 -0
- data/.github/workflows/codeql.yml +93 -0
- data/.rubocop.yml +30 -6
- data/.ruby-version +1 -0
- data/CHANGELOG.md +14 -1
- data/Gemfile +6 -9
- data/Gemfile.lock +88 -86
- data/README.md +111 -17
- data/Rakefile +1 -1
- data/bin/console +1 -1
- data/bin/rubocop +29 -0
- data/docs/examples/erd.yml +3 -3
- data/lib/rails-mermaid_erd_markdown/configuration.rb +11 -3
- data/lib/rails-mermaid_erd_markdown/generator.rb +169 -0
- data/lib/rails-mermaid_erd_markdown/markdown_document.rb +104 -0
- data/lib/rails-mermaid_erd_markdown/source_data.rb +63 -0
- data/lib/rails-mermaid_erd_markdown/version.rb +1 -1
- data/lib/rails-mermaid_erd_markdown.rb +3 -93
- data/rails-mermaid_erd_markdown.gemspec +6 -4
- data/test/example_output/mock_ERD.md +48 -0
- data/test/example_output/mock_ERD_index.md +10 -0
- data/test/example_output/mock_ERD_model.md +46 -0
- data/test/mock_data/models.rb +105 -0
- data/test/test_helper.rb +4 -2
- data/test/test_rails/rails-mermaid_erd_markdown/test_generator.rb +54 -0
- data/test/test_rails/rails-mermaid_erd_markdown/test_markdown_document.rb +76 -0
- data/test/test_rails/rails-mermaid_erd_markdown/test_source_data.rb +70 -0
- data/test/test_rails/test_rails-mermaid_erd_markdown.rb +0 -40
- metadata +23 -67
- data/test/dummy-rails/.dockerignore +0 -37
- data/test/dummy-rails/.ruby-version +0 -1
- data/test/dummy-rails/Rakefile +0 -6
- data/test/dummy-rails/app/assets/config/manifest.js +0 -4
- data/test/dummy-rails/app/assets/images/.keep +0 -0
- data/test/dummy-rails/app/assets/stylesheets/application.css +0 -15
- data/test/dummy-rails/app/channels/application_cable/channel.rb +0 -4
- data/test/dummy-rails/app/channels/application_cable/connection.rb +0 -4
- data/test/dummy-rails/app/controllers/application_controller.rb +0 -2
- data/test/dummy-rails/app/controllers/concerns/.keep +0 -0
- data/test/dummy-rails/app/helpers/application_helper.rb +0 -2
- data/test/dummy-rails/app/javascript/application.js +0 -3
- data/test/dummy-rails/app/javascript/controllers/application.js +0 -9
- data/test/dummy-rails/app/javascript/controllers/hello_controller.js +0 -7
- data/test/dummy-rails/app/javascript/controllers/index.js +0 -11
- data/test/dummy-rails/app/jobs/application_job.rb +0 -7
- data/test/dummy-rails/app/mailers/application_mailer.rb +0 -4
- data/test/dummy-rails/app/models/application_record.rb +0 -3
- data/test/dummy-rails/app/models/concerns/.keep +0 -0
- data/test/dummy-rails/app/views/layouts/application.html.erb +0 -16
- data/test/dummy-rails/app/views/layouts/mailer.html.erb +0 -13
- data/test/dummy-rails/app/views/layouts/mailer.text.erb +0 -1
- data/test/dummy-rails/bin/bundle +0 -114
- data/test/dummy-rails/bin/docker-entrypoint +0 -8
- data/test/dummy-rails/bin/importmap +0 -4
- data/test/dummy-rails/bin/rails +0 -4
- data/test/dummy-rails/bin/rake +0 -4
- data/test/dummy-rails/bin/setup +0 -33
- data/test/dummy-rails/config/application.rb +0 -27
- data/test/dummy-rails/config/boot.rb +0 -3
- data/test/dummy-rails/config/cable.yml +0 -10
- data/test/dummy-rails/config/credentials.yml.enc +0 -1
- data/test/dummy-rails/config/database.yml +0 -25
- data/test/dummy-rails/config/environment.rb +0 -5
- data/test/dummy-rails/config/environments/development.rb +0 -76
- data/test/dummy-rails/config/environments/production.rb +0 -97
- data/test/dummy-rails/config/environments/test.rb +0 -64
- data/test/dummy-rails/config/importmap.rb +0 -7
- data/test/dummy-rails/config/initializers/content_security_policy.rb +0 -25
- data/test/dummy-rails/config/initializers/filter_parameter_logging.rb +0 -8
- data/test/dummy-rails/config/initializers/inflections.rb +0 -16
- data/test/dummy-rails/config/initializers/permissions_policy.rb +0 -13
- data/test/dummy-rails/config/locales/en.yml +0 -31
- data/test/dummy-rails/config/puma.rb +0 -35
- data/test/dummy-rails/config/routes.rb +0 -10
- data/test/dummy-rails/config/storage.yml +0 -34
- data/test/dummy-rails/config.ru +0 -6
- data/test/dummy-rails/db/seeds.rb +0 -9
- data/test/dummy-rails/test/application_system_test_case.rb +0 -5
- data/test/dummy-rails/test/channels/application_cable/connection_test.rb +0 -13
- data/test/dummy-rails/test/controllers/.keep +0 -0
- data/test/dummy-rails/test/fixtures/files/.keep +0 -0
- data/test/dummy-rails/test/helpers/.keep +0 -0
- data/test/dummy-rails/test/integration/.keep +0 -0
- data/test/dummy-rails/test/mailers/.keep +0 -0
- data/test/dummy-rails/test/models/.keep +0 -0
- data/test/dummy-rails/test/system/.keep +0 -0
- data/test/dummy-rails/test/test_helper.rb +0 -15
- data/test/dummy-rails/vendor/.keep +0 -0
- data/test/dummy-rails/vendor/javascript/.keep +0 -0
- data/test/util/mock_ERD.md +0 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fc2645eeda1d07ce73a989297a6de24e9a28e8dd2a812bf94dca1eb7d9d0dd8
|
4
|
+
data.tar.gz: 20534d950c4ab8109286bd708e133516ce4a4e3ce0e7ba8991a664e23e2c0222
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f99bb71981c90be8d6f0c6ad6725133b8e39b2e48664e4bd0dfae24314a24b9dee3045b939e33f5101ce4fd607fb5d5e3768ecd0e85a9e5f8b745bb87ccc248
|
7
|
+
data.tar.gz: 6980b1b01319af831bfc2798949fae4b85d6dc152e73dcd9469e704a6805711c1ae98cbcea066ea4fb062c153d8d57d2f5580aeea27b2039771656d488563a93
|
@@ -0,0 +1 @@
|
|
1
|
+
* @humzahkiani # Applies to all files and directories
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub. They are
|
2
|
+
# provided by a third-party and are governed by separate terms of service,
|
3
|
+
# privacy policy, and support documentation.
|
4
|
+
#
|
5
|
+
# This workflow will install a prebuilt Ruby version, install dependencies, and
|
6
|
+
# run tests and linters.
|
7
|
+
name: 'CI'
|
8
|
+
on:
|
9
|
+
push:
|
10
|
+
branches: ['main']
|
11
|
+
pull_request:
|
12
|
+
branches: ['main']
|
13
|
+
jobs:
|
14
|
+
test:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
env:
|
17
|
+
RAILS_ENV: test
|
18
|
+
steps:
|
19
|
+
- name: Checkout code
|
20
|
+
uses: actions/checkout@v4
|
21
|
+
# Add or replace dependency steps here
|
22
|
+
- name: Install Ruby and gems
|
23
|
+
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
|
24
|
+
with:
|
25
|
+
bundler-cache: true
|
26
|
+
# Add or replace database setup steps here
|
27
|
+
# Add or replace test runners here
|
28
|
+
- name: Run tests
|
29
|
+
run: bundle exec rake
|
30
|
+
|
31
|
+
lint:
|
32
|
+
runs-on: ubuntu-latest
|
33
|
+
steps:
|
34
|
+
- name: Checkout code
|
35
|
+
uses: actions/checkout@v4
|
36
|
+
- name: Install Ruby and gems
|
37
|
+
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
|
38
|
+
with:
|
39
|
+
bundler-cache: true
|
40
|
+
# Add or replace any other lints here
|
41
|
+
- name: Lint Ruby files
|
42
|
+
run: bin/rubocop --parallel
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
2
|
+
# to commit it to your repository.
|
3
|
+
#
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
5
|
+
# or to provide custom queries or build logic.
|
6
|
+
#
|
7
|
+
# ******** NOTE ********
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
10
|
+
# supported CodeQL languages.
|
11
|
+
#
|
12
|
+
name: 'CodeQL'
|
13
|
+
|
14
|
+
on:
|
15
|
+
push:
|
16
|
+
branches: ['main']
|
17
|
+
pull_request:
|
18
|
+
branches: ['main']
|
19
|
+
|
20
|
+
jobs:
|
21
|
+
analyze:
|
22
|
+
name: Analyze (${{ matrix.language }})
|
23
|
+
# Runner size impacts CodeQL analysis time. To learn more, please see:
|
24
|
+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
|
25
|
+
# - https://gh.io/supported-runners-and-hardware-resources
|
26
|
+
# - https://gh.io/using-larger-runners (GitHub.com only)
|
27
|
+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
|
28
|
+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
|
29
|
+
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
|
30
|
+
permissions:
|
31
|
+
# required for all workflows
|
32
|
+
security-events: write
|
33
|
+
|
34
|
+
# required to fetch internal or private CodeQL packs
|
35
|
+
packages: read
|
36
|
+
|
37
|
+
# only required for workflows in private repositories
|
38
|
+
actions: read
|
39
|
+
contents: read
|
40
|
+
|
41
|
+
strategy:
|
42
|
+
fail-fast: false
|
43
|
+
matrix:
|
44
|
+
include:
|
45
|
+
- language: javascript-typescript
|
46
|
+
build-mode: none
|
47
|
+
- language: ruby
|
48
|
+
build-mode: none
|
49
|
+
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
|
50
|
+
# Use `c-cpp` to analyze code written in C, C++ or both
|
51
|
+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
|
52
|
+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
|
53
|
+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
|
54
|
+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
|
55
|
+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
|
56
|
+
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
|
57
|
+
steps:
|
58
|
+
- name: Checkout repository
|
59
|
+
uses: actions/checkout@v4
|
60
|
+
|
61
|
+
# Initializes the CodeQL tools for scanning.
|
62
|
+
- name: Initialize CodeQL
|
63
|
+
uses: github/codeql-action/init@v3
|
64
|
+
with:
|
65
|
+
languages: ${{ matrix.language }}
|
66
|
+
build-mode: ${{ matrix.build-mode }}
|
67
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
68
|
+
# By default, queries listed here will override any specified in a config file.
|
69
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
70
|
+
|
71
|
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
72
|
+
# queries: security-extended,security-and-quality
|
73
|
+
|
74
|
+
# If the analyze step fails for one of the languages you are analyzing with
|
75
|
+
# "We were unable to automatically build your code", modify the matrix above
|
76
|
+
# to set the build mode to "manual" for that language. Then modify this step
|
77
|
+
# to build your code.
|
78
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
79
|
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
80
|
+
- if: matrix.build-mode == 'manual'
|
81
|
+
shell: bash
|
82
|
+
run: |
|
83
|
+
echo 'If you are using a "manual" build mode for one or more of the' \
|
84
|
+
'languages you are analyzing, replace this with the commands to build' \
|
85
|
+
'your code, for example:'
|
86
|
+
echo ' make bootstrap'
|
87
|
+
echo ' make release'
|
88
|
+
exit 1
|
89
|
+
|
90
|
+
- name: Perform CodeQL Analysis
|
91
|
+
uses: github/codeql-action/analyze@v3
|
92
|
+
with:
|
93
|
+
category: '/language:${{matrix.language}}'
|
data/.rubocop.yml
CHANGED
@@ -1,13 +1,37 @@
|
|
1
1
|
AllCops:
|
2
|
-
|
2
|
+
NewCops: enable
|
3
|
+
TargetRubyVersion: 2.6
|
4
|
+
Exclude:
|
5
|
+
- 'test/**/*'
|
6
|
+
- 'vendor/**/*'
|
7
|
+
|
8
|
+
Naming/FileName:
|
9
|
+
Enabled: false
|
10
|
+
|
11
|
+
Style/Documentation:
|
12
|
+
Enabled: false
|
3
13
|
|
4
14
|
Style/StringLiterals:
|
5
|
-
|
6
|
-
|
15
|
+
Enabled: true
|
16
|
+
EnforcedStyle: double_quotes
|
7
17
|
|
8
18
|
Style/StringLiteralsInInterpolation:
|
9
|
-
|
10
|
-
|
19
|
+
Enabled: true
|
20
|
+
EnforcedStyle: double_quotes
|
11
21
|
|
12
22
|
Layout/LineLength:
|
13
|
-
|
23
|
+
Max: 120
|
24
|
+
|
25
|
+
Metrics/AbcSize:
|
26
|
+
Exclude:
|
27
|
+
- 'lib/rails-mermaid_erd_markdown/configuration.rb'
|
28
|
+
- 'lib/rails-mermaid_erd_markdown/source_data.rb'
|
29
|
+
- 'lib/rails-mermaid_erd_markdown/generator.rb'
|
30
|
+
|
31
|
+
Metrics/ClassLength:
|
32
|
+
Max: 125
|
33
|
+
|
34
|
+
Metrics/MethodLength:
|
35
|
+
Max: 25
|
36
|
+
Exclude:
|
37
|
+
- 'lib/rails-mermaid_erd_markdown/configuration.rb'
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.1.0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
3
|
## [0.1.0] - 2024-05-27
|
4
|
-
|
5
4
|
- Initial release
|
5
|
+
- Create ERD mermaid markdown of all ActiveRecord models
|
6
|
+
|
7
|
+
## [0.2.0] - 2024-05-28
|
8
|
+
- Fix issues with package
|
9
|
+
- Update gemspec
|
10
|
+
|
11
|
+
## [0.3.0] - 2024-07-31
|
12
|
+
- Fix minor issues
|
13
|
+
- Add ability to optionally split into multiple ERDs
|
14
|
+
- Refactor classes to separate concerns
|
15
|
+
|
16
|
+
## [0.3.1] - 2024-08-10
|
17
|
+
- Update docs
|
18
|
+
- Change rails-mermaid_erd version dependency to at least 0.4.2
|
data/Gemfile
CHANGED
@@ -5,12 +5,9 @@ source "https://rubygems.org"
|
|
5
5
|
# Specify your gem's dependencies in rails-mermaid_erd_markdown.gemspec
|
6
6
|
gemspec
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
gem "rake"
|
11
|
-
|
12
|
-
gem "
|
13
|
-
|
14
|
-
gem "rubocop", "~> 1.21"
|
15
|
-
|
16
|
-
gem "sqlite3", "~> 1.4"
|
8
|
+
group :development do
|
9
|
+
gem "minitest"
|
10
|
+
gem "rake"
|
11
|
+
gem "rubocop"
|
12
|
+
gem "sqlite3"
|
13
|
+
end
|
data/Gemfile.lock
CHANGED
@@ -1,106 +1,104 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rails-mermaid_erd_markdown (0.1
|
4
|
+
rails-mermaid_erd_markdown (0.3.1)
|
5
5
|
rails (>= 5.2)
|
6
|
+
rails-mermaid_erd (>= 0.4.2)
|
6
7
|
|
7
8
|
GEM
|
8
9
|
remote: https://rubygems.org/
|
9
10
|
specs:
|
10
|
-
actioncable (7.
|
11
|
-
actionpack (= 7.
|
12
|
-
activesupport (= 7.
|
11
|
+
actioncable (7.2.0)
|
12
|
+
actionpack (= 7.2.0)
|
13
|
+
activesupport (= 7.2.0)
|
13
14
|
nio4r (~> 2.0)
|
14
15
|
websocket-driver (>= 0.6.1)
|
15
16
|
zeitwerk (~> 2.6)
|
16
|
-
actionmailbox (7.
|
17
|
-
actionpack (= 7.
|
18
|
-
activejob (= 7.
|
19
|
-
activerecord (= 7.
|
20
|
-
activestorage (= 7.
|
21
|
-
activesupport (= 7.
|
22
|
-
mail (>= 2.
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
activejob (= 7.1.3.3)
|
30
|
-
activesupport (= 7.1.3.3)
|
31
|
-
mail (~> 2.5, >= 2.5.4)
|
32
|
-
net-imap
|
33
|
-
net-pop
|
34
|
-
net-smtp
|
17
|
+
actionmailbox (7.2.0)
|
18
|
+
actionpack (= 7.2.0)
|
19
|
+
activejob (= 7.2.0)
|
20
|
+
activerecord (= 7.2.0)
|
21
|
+
activestorage (= 7.2.0)
|
22
|
+
activesupport (= 7.2.0)
|
23
|
+
mail (>= 2.8.0)
|
24
|
+
actionmailer (7.2.0)
|
25
|
+
actionpack (= 7.2.0)
|
26
|
+
actionview (= 7.2.0)
|
27
|
+
activejob (= 7.2.0)
|
28
|
+
activesupport (= 7.2.0)
|
29
|
+
mail (>= 2.8.0)
|
35
30
|
rails-dom-testing (~> 2.2)
|
36
|
-
actionpack (7.
|
37
|
-
actionview (= 7.
|
38
|
-
activesupport (= 7.
|
31
|
+
actionpack (7.2.0)
|
32
|
+
actionview (= 7.2.0)
|
33
|
+
activesupport (= 7.2.0)
|
39
34
|
nokogiri (>= 1.8.5)
|
40
35
|
racc
|
41
|
-
rack (>= 2.2.4)
|
36
|
+
rack (>= 2.2.4, < 3.2)
|
42
37
|
rack-session (>= 1.0.1)
|
43
38
|
rack-test (>= 0.6.3)
|
44
39
|
rails-dom-testing (~> 2.2)
|
45
40
|
rails-html-sanitizer (~> 1.6)
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
41
|
+
useragent (~> 0.16)
|
42
|
+
actiontext (7.2.0)
|
43
|
+
actionpack (= 7.2.0)
|
44
|
+
activerecord (= 7.2.0)
|
45
|
+
activestorage (= 7.2.0)
|
46
|
+
activesupport (= 7.2.0)
|
51
47
|
globalid (>= 0.6.0)
|
52
48
|
nokogiri (>= 1.8.5)
|
53
|
-
actionview (7.
|
54
|
-
activesupport (= 7.
|
49
|
+
actionview (7.2.0)
|
50
|
+
activesupport (= 7.2.0)
|
55
51
|
builder (~> 3.1)
|
56
52
|
erubi (~> 1.11)
|
57
53
|
rails-dom-testing (~> 2.2)
|
58
54
|
rails-html-sanitizer (~> 1.6)
|
59
|
-
activejob (7.
|
60
|
-
activesupport (= 7.
|
55
|
+
activejob (7.2.0)
|
56
|
+
activesupport (= 7.2.0)
|
61
57
|
globalid (>= 0.3.6)
|
62
|
-
activemodel (7.
|
63
|
-
activesupport (= 7.
|
64
|
-
activerecord (7.
|
65
|
-
activemodel (= 7.
|
66
|
-
activesupport (= 7.
|
58
|
+
activemodel (7.2.0)
|
59
|
+
activesupport (= 7.2.0)
|
60
|
+
activerecord (7.2.0)
|
61
|
+
activemodel (= 7.2.0)
|
62
|
+
activesupport (= 7.2.0)
|
67
63
|
timeout (>= 0.4.0)
|
68
|
-
activestorage (7.
|
69
|
-
actionpack (= 7.
|
70
|
-
activejob (= 7.
|
71
|
-
activerecord (= 7.
|
72
|
-
activesupport (= 7.
|
64
|
+
activestorage (7.2.0)
|
65
|
+
actionpack (= 7.2.0)
|
66
|
+
activejob (= 7.2.0)
|
67
|
+
activerecord (= 7.2.0)
|
68
|
+
activesupport (= 7.2.0)
|
73
69
|
marcel (~> 1.0)
|
74
|
-
activesupport (7.
|
70
|
+
activesupport (7.2.0)
|
75
71
|
base64
|
76
72
|
bigdecimal
|
77
|
-
concurrent-ruby (~> 1.0, >= 1.
|
73
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
78
74
|
connection_pool (>= 2.2.5)
|
79
75
|
drb
|
80
76
|
i18n (>= 1.6, < 2)
|
77
|
+
logger (>= 1.4.2)
|
81
78
|
minitest (>= 5.1)
|
82
|
-
|
83
|
-
tzinfo (~> 2.0)
|
79
|
+
securerandom (>= 0.3)
|
80
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
84
81
|
ast (2.4.2)
|
85
82
|
base64 (0.2.0)
|
86
83
|
bigdecimal (3.1.8)
|
87
|
-
builder (3.
|
88
|
-
concurrent-ruby (1.
|
84
|
+
builder (3.3.0)
|
85
|
+
concurrent-ruby (1.3.4)
|
89
86
|
connection_pool (2.4.1)
|
90
87
|
crass (1.0.6)
|
91
88
|
date (3.3.4)
|
92
89
|
drb (2.2.1)
|
93
|
-
erubi (1.
|
90
|
+
erubi (1.13.0)
|
94
91
|
globalid (1.2.1)
|
95
92
|
activesupport (>= 6.1)
|
96
93
|
i18n (1.14.5)
|
97
94
|
concurrent-ruby (~> 1.0)
|
98
95
|
io-console (0.7.2)
|
99
|
-
irb (1.
|
96
|
+
irb (1.14.0)
|
100
97
|
rdoc (>= 4.0.0)
|
101
98
|
reline (>= 0.4.2)
|
102
99
|
json (2.7.2)
|
103
100
|
language_server-protocol (3.17.0.3)
|
101
|
+
logger (1.6.0)
|
104
102
|
loofah (2.22.0)
|
105
103
|
crass (~> 1.0.2)
|
106
104
|
nokogiri (>= 1.12.0)
|
@@ -111,9 +109,8 @@ GEM
|
|
111
109
|
net-smtp
|
112
110
|
marcel (1.0.4)
|
113
111
|
mini_mime (1.1.5)
|
114
|
-
minitest (5.
|
115
|
-
|
116
|
-
net-imap (0.4.11)
|
112
|
+
minitest (5.24.1)
|
113
|
+
net-imap (0.4.14)
|
117
114
|
date
|
118
115
|
net-protocol
|
119
116
|
net-pop (0.1.2)
|
@@ -123,7 +120,7 @@ GEM
|
|
123
120
|
net-smtp (0.5.0)
|
124
121
|
net-protocol
|
125
122
|
nio4r (2.7.3)
|
126
|
-
nokogiri (1.16.
|
123
|
+
nokogiri (1.16.7-arm64-darwin)
|
127
124
|
racc (~> 1.4)
|
128
125
|
parallel (1.24.0)
|
129
126
|
parser (3.3.1.0)
|
@@ -131,8 +128,8 @@ GEM
|
|
131
128
|
racc
|
132
129
|
psych (5.1.2)
|
133
130
|
stringio
|
134
|
-
racc (1.8.
|
135
|
-
rack (3.
|
131
|
+
racc (1.8.1)
|
132
|
+
rack (3.1.7)
|
136
133
|
rack-session (2.0.0)
|
137
134
|
rack (>= 3.0.0)
|
138
135
|
rack-test (2.1.0)
|
@@ -140,20 +137,20 @@ GEM
|
|
140
137
|
rackup (2.1.0)
|
141
138
|
rack (>= 3)
|
142
139
|
webrick (~> 1.8)
|
143
|
-
rails (7.
|
144
|
-
actioncable (= 7.
|
145
|
-
actionmailbox (= 7.
|
146
|
-
actionmailer (= 7.
|
147
|
-
actionpack (= 7.
|
148
|
-
actiontext (= 7.
|
149
|
-
actionview (= 7.
|
150
|
-
activejob (= 7.
|
151
|
-
activemodel (= 7.
|
152
|
-
activerecord (= 7.
|
153
|
-
activestorage (= 7.
|
154
|
-
activesupport (= 7.
|
140
|
+
rails (7.2.0)
|
141
|
+
actioncable (= 7.2.0)
|
142
|
+
actionmailbox (= 7.2.0)
|
143
|
+
actionmailer (= 7.2.0)
|
144
|
+
actionpack (= 7.2.0)
|
145
|
+
actiontext (= 7.2.0)
|
146
|
+
actionview (= 7.2.0)
|
147
|
+
activejob (= 7.2.0)
|
148
|
+
activemodel (= 7.2.0)
|
149
|
+
activerecord (= 7.2.0)
|
150
|
+
activestorage (= 7.2.0)
|
151
|
+
activesupport (= 7.2.0)
|
155
152
|
bundler (>= 1.15.0)
|
156
|
-
railties (= 7.
|
153
|
+
railties (= 7.2.0)
|
157
154
|
rails-dom-testing (2.2.0)
|
158
155
|
activesupport (>= 5.0.0)
|
159
156
|
minitest
|
@@ -161,12 +158,12 @@ GEM
|
|
161
158
|
rails-html-sanitizer (1.6.0)
|
162
159
|
loofah (~> 2.21)
|
163
160
|
nokogiri (~> 1.14)
|
164
|
-
rails-mermaid_erd (0.
|
161
|
+
rails-mermaid_erd (0.5.0)
|
165
162
|
rails (>= 5.2)
|
166
|
-
railties (7.
|
167
|
-
actionpack (= 7.
|
168
|
-
activesupport (= 7.
|
169
|
-
irb
|
163
|
+
railties (7.2.0)
|
164
|
+
actionpack (= 7.2.0)
|
165
|
+
activesupport (= 7.2.0)
|
166
|
+
irb (~> 1.13)
|
170
167
|
rackup (>= 1.0.0)
|
171
168
|
rake (>= 12.2)
|
172
169
|
thor (~> 1.0, >= 1.2.2)
|
@@ -176,7 +173,7 @@ GEM
|
|
176
173
|
rdoc (6.7.0)
|
177
174
|
psych (>= 4.0.0)
|
178
175
|
regexp_parser (2.9.2)
|
179
|
-
reline (0.5.
|
176
|
+
reline (0.5.9)
|
180
177
|
io-console (~> 0.5)
|
181
178
|
rexml (3.2.8)
|
182
179
|
strscan (>= 3.0.9)
|
@@ -194,30 +191,35 @@ GEM
|
|
194
191
|
rubocop-ast (1.31.3)
|
195
192
|
parser (>= 3.3.1.0)
|
196
193
|
ruby-progressbar (1.13.0)
|
194
|
+
securerandom (0.3.1)
|
197
195
|
sqlite3 (1.7.3-arm64-darwin)
|
198
|
-
|
196
|
+
sqlite3 (1.7.3-x86_64-darwin)
|
197
|
+
sqlite3 (1.7.3-x86_64-linux)
|
198
|
+
stringio (3.1.1)
|
199
199
|
strscan (3.1.0)
|
200
200
|
thor (1.3.1)
|
201
201
|
timeout (0.4.1)
|
202
202
|
tzinfo (2.0.6)
|
203
203
|
concurrent-ruby (~> 1.0)
|
204
204
|
unicode-display_width (2.5.0)
|
205
|
+
useragent (0.16.10)
|
205
206
|
webrick (1.8.1)
|
206
207
|
websocket-driver (0.7.6)
|
207
208
|
websocket-extensions (>= 0.1.0)
|
208
209
|
websocket-extensions (0.1.5)
|
209
|
-
zeitwerk (2.6.
|
210
|
+
zeitwerk (2.6.17)
|
210
211
|
|
211
212
|
PLATFORMS
|
212
213
|
arm64-darwin-23
|
214
|
+
x86_64-darwin-22
|
215
|
+
x86_64-linux
|
213
216
|
|
214
217
|
DEPENDENCIES
|
215
|
-
minitest
|
216
|
-
rails-mermaid_erd
|
218
|
+
minitest
|
217
219
|
rails-mermaid_erd_markdown!
|
218
|
-
rake
|
219
|
-
rubocop
|
220
|
-
sqlite3
|
220
|
+
rake
|
221
|
+
rubocop
|
222
|
+
sqlite3
|
221
223
|
|
222
224
|
BUNDLED WITH
|
223
225
|
2.3.3
|