2026-05-20 14:32:00 -05:00
|
|
|
# Phase 19 (Track M.1) — class-method benign control for Ruby.
|
|
|
|
|
require 'shellwords'
|
|
|
|
|
|
|
|
|
|
class UserService
|
|
|
|
|
def initialize
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def run(input)
|
2026-05-23 10:31:57 -05:00
|
|
|
`true #{Shellwords.escape(input)}`
|
2026-05-20 14:32:00 -05:00
|
|
|
end
|
|
|
|
|
end
|