Sha256: d77653f8ff85c6bbe0a8dc7919ab41dcb9f51dbb0b80eb95edba3764cef69406
Contents?: true
Size: 391 Bytes
Versions: 2
Compression:
Stored size: 391 Bytes
Contents
# frozen_string_literal: true require "sod" module Rubysmith module CLI module Actions # Stores Reek flag. class Reek < Sod::Action include Import[:settings] description "Add Reek gem." on "--[no-]reek" default { Container[:settings].build_reek } def call(value = nil) = settings.build_reek = value end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubysmith-7.1.0 | lib/rubysmith/cli/actions/reek.rb |
rubysmith-7.0.0 | lib/rubysmith/cli/actions/reek.rb |