class Simple

Public Instance Methods

do(tasks) click to toggle source
# File lib/employees/mankind/simple.rb, line 4
def do(tasks)
        raise ArgumentError, "It must be Array in the hash" unless tasks.is_a? Array

        tasks = tasks.to_a.map do |task|
                                tag inject task
                        end
        tasks.join " "
end
namespace() click to toggle source
# File lib/employees/mankind/simple.rb, line 13
def namespace
        "sos:"
end