Class: Jets::Command::RunnerCommand

Inherits:
Base
  • Object
show all
Includes:
EnvironmentArgument
Defined in:
lib/jets/commands/runner/runner_command.rb

Overview

:nodoc:

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

base_name, command_name, default_command_root, desc, engine?, executable, exit_on_failure?, #help, hide_command!, inherited, long_desc, namespace, perform, printing_commands, usage_path

Methods included from ApiHelpers

#check_for_error_message!, #no_token_exit!, #paging_params

Methods included from AwsHelpers

#find_stack, #first_run?

Methods included from AwsServices

#apigateway, #aws_lambda, #aws_options, #cfn, #dynamodb, #logs, #s3, #s3_resource, #sns, #sqs, #sts

Methods included from AwsServices::StackStatus

#lookup, #stack_exists?, #stack_in_progress?

Methods included from AwsServices::GlobalMemoist

included

Methods included from Actions

#load_generators, #load_tasks, #require_application!, #require_application_and_environment!, #set_application_directory!

Class Method Details



17
18
19
# File 'lib/jets/commands/runner/runner_command.rb', line 17

def self.banner(*)
  "#{super} [<'Some.ruby(code)'> | <filename.rb> | -]"
end

Instance Method Details

#perform(code_or_file = nil, *command_argv) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/jets/commands/runner/runner_command.rb', line 23

def perform(code_or_file = nil, *command_argv)
  extract_environment_option_from_argument

  unless code_or_file
    help
    exit 1
  end

  require_application_and_environment!
  Jets.application.load_runner

  args = command_argv

  ARGV.replace(command_argv)

  if code_or_file == "-"
    eval($stdin.read, TOPLEVEL_BINDING, "stdin")
  elsif File.exist?(code_or_file)
    expanded_file_path = File.expand_path code_or_file
    $0 = expanded_file_path
    Kernel.load expanded_file_path
  else
    begin
      # Jets changed TOPLEVEL_BINDING to binding to have access to args
      # To keep args working https://github.com/boltops-tools/jets/pull/669
      eval(code_or_file, binding, __FILE__, __LINE__)
    rescue SyntaxError, NameError => e
      error "Please specify a valid ruby command or the path of a script to run."
      error "Run '#{self.class.executable} -h' for help."
      error ""
      error e
      exit 1
    end
  end
end