Class: GithubFlowReadiness::Checks::SqliteProduction

Inherits:
Base
  • Object
show all
Defined in:
lib/core/github_flow_readiness/checks.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from GithubFlowReadiness::Checks::Base

Instance Method Details

#callObject



106
107
108
109
110
111
112
113
# File 'lib/core/github_flow_readiness/checks.rb', line 106

def call
  return unless service.sqlite_database_in_production?

  info_result(
    "Production database config uses SQLite. `cpflow generate` will scaffold " \
    "persistent `db` and `storage` volumes."
  )
end