class Devup::CLI::Commands::Up
Public Instance Methods
call(**options)
click to toggle source
Calls superclass method
Devup::CLI::Commands::Command#call
# File lib/devup/cli/commands/up.rb, line 10 def call(**options) super devup.up print_info end
Private Instance Methods
print_info()
click to toggle source
# File lib/devup/cli/commands/up.rb, line 19 def print_info puts <<~INFO Now you are ready to use services. All variables are available in a .env.services file. Just start you ruby application if gem "devup" is used. Or load variable manually with $ source .env.services INFO end