Sha256: 5a7cfc30b9487c7e0bb0b716dbd6354d2a5dbddd88423f61e25477c4cd27310a
Contents?: true
Size: 423 Bytes
Versions: 18
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true require "sod" module Rubysmith module CLI module Actions # Stores SimpleCov flag. class SimpleCov < Sod::Action include Import[:input] description "Add SimpleCov gem." on "--[no-]simple_cov" default { Container[:configuration].build_simple_cov } def call(value = nil) = input.build_simple_cov = value end end end end
Version data entries
18 entries across 18 versions & 1 rubygems