class HealthCheckCli::Commands::Show
Public Class Methods
new(app)
click to toggle source
# File lib/health_check_cli/commands/show.rb, line 4 def initialize(app) @app = app end
Public Instance Methods
execute(opts = nil)
click to toggle source
# File lib/health_check_cli/commands/show.rb, line 8 def execute(opts = nil) puts "Checking application: #{@app.application_url}" end