Sha256: 6b9eb640edadedf111dead225b6875ea79d8337f697b6e39d44245e040dedd49
Contents?: true
Size: 924 Bytes
Versions: 1
Compression:
Stored size: 924 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2020 Eric Crane. All rights reserved. # # Execute a shell command. # module Gloo module Verbs class Execute < Gloo::Core::Verb KEYWORD = 'execute'.freeze KEYWORD_SHORT = 'exec'.freeze MISSING_EXPR_ERR = 'Missing Expression!'.freeze # # Run the verb. # def run if @tokens.token_count < 2 $engine.err MISSING_EXPR_ERR return end expr = Gloo::Expr::Expression.new( @tokens.params ) system expr.evaluate, chdir: Dir.pwd # `#{expr.evaluate}` # exec expr.evaluate end # # Get the Verb's keyword. # def self.keyword return KEYWORD end # # Get the Verb's keyword shortcut. # def self.keyword_shortcut return KEYWORD_SHORT end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gloo-0.7.1 | lib/gloo/verbs/execute.rb |