Sha256: ee5eaa5f00aee09636dc14fa4ca1a2fe33025b7a893d8528f24f4f1fe963f819
Contents?: true
Size: 1023 Bytes
Versions: 5
Compression:
Stored size: 1023 Bytes
Contents
# frozen_string_literal: true module ConvenientService module Examples module Standard class Gemfile module Services class AssertValidRubySyntax include ConvenientService::Standard::Config attr_reader :content def initialize(content:) @content = content end def result ## # NOTE: `> /dev/null 2>&1` is used to hide output. # https://unix.stackexchange.com/a/119650/394253 # check_ruby_syntax_result = Services::RunShellCommand.result(command: "ruby -c #{file.path} > /dev/null 2>&1") return error("`#{content}` contains invalid Ruby syntax") unless check_ruby_syntax_result.success? success end private def file @file ||= ::Tempfile.new.tap { |tempfile| tempfile.write(content) }.tap(&:close) end end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems