class TiyoHw::Run

Attributes

pwd[R]

Public Class Methods

new(pwd) click to toggle source
# File lib/tiyo_hw/run.rb, line 8
def initialize(pwd)
  @pwd = pwd
end

Public Instance Methods

cmd() click to toggle source
# File lib/tiyo_hw/run.rb, line 12
def cmd
  commands = []
  commands += TiyoHw::Runners::Ruby.get_commands(pwd)
  commands += TiyoHw::Runners::Javascript.get_commands(pwd)
  commands.join(" && ")
end