Class: WindClutter::CLI::Commands::Project::Current

Inherits:
Dry::CLI::Command
  • Object
show all
Includes:
Util
Defined in:
lib/windclutter/cli/commands/project.rb

Overview

Show current active project

Instance Method Summary collapse

Instance Method Details

#callObject



52
53
54
55
56
57
# File 'lib/windclutter/cli/commands/project.rb', line 52

def call(**)
  project_name = Config.read('active_project')

  print 'Currently using: '.green
  puts project_name
end