Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Surpress warnings for missing SolidQueue tables #417

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion lib/rails_erd/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def start

def initialize(path, options)
@path, @options = path, options
require "rails_erd/diagram/graphviz" if options.generator == :graphviz
require "rails_erd/diagram/graphviz" if options[:generator] == :graphviz
end

def start
Expand Down
14 changes: 14 additions & 0 deletions lib/rails_erd/domain.rb
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,20 @@ def rails_models
ActiveStorage::VariantRecord
ActionText::RichText
ActionText::EncryptedRichText
SolidQueue::Message
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe SolidQueue::Message is now SolidCable::Message. Maybe include both for backward compatibility?

SolidCache::Entry
SolidQueue::Semaphore
SolidQueue::RecurringTask
SolidQueue::Process
SolidQueue::Pause
SolidQueue::Job
SolidQueue::ScheduledExecution
SolidQueue::RecurringExecution
SolidQueue::ReadyExecution
SolidQueue::FailedExecution
SolidQueue::ClaimedExecution
SolidQueue::BlockedExecution
SolidQueue::Execution
).map{ |model| Object.const_get(model) rescue nil }.compact
end

Expand Down
Loading