Sha256: ab120aad37483ac11c0064a66053e680dbe337a8c9fdb50687da2f1e48c4af76
Contents?: true
Size: 519 Bytes
Versions: 51
Compression:
Stored size: 519 Bytes
Contents
require 'r10k/util/setopts' require 'r10k/logging' module R10K module Action class Base include R10K::Logging include R10K::Util::Setopts attr_accessor :settings def initialize(opts, argv, settings = {}) @opts = opts @argv = argv @settings = settings setopts(opts, allowed_initialize_opts) end private def allowed_initialize_opts { :config => true, :trace => true, } end end end end
Version data entries
51 entries across 51 versions & 1 rubygems