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