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