Class: Rubyists::Linear::CLI::Console

Inherits:
Object
  • Object
show all
Includes:
Caller, CommonOptions, SemanticLogger::Loggable
Defined in:
lib/linear/commands/console.rb

Overview

The Console command

Instance Method Summary collapse

Methods included from CommonOptions

#display, included

Methods included from Caller

prepended

Instance Method Details

#callObject



19
20
21
22
23
24
# File 'lib/linear/commands/console.rb', line 19

def call(**)
  Dir.mktmpdir('.linear-cli-console') do |dir|
    Rubyists::Linear.tmpdir = dir
    Rubyists::Linear.pry
  end
end