Sha256: 55ade9dbbb8bd92587cf2e576cb51354bf82695aaaffb571c2fd1aa88e0008e3
Contents?: true
Size: 505 Bytes
Versions: 37
Compression:
Stored size: 505 Bytes
Contents
require "thor/core_ext/hash_with_indifferent_access" module Guard # A class that holds options. Can be instantiated with default options. # class Options < Thor::CoreExt::HashWithIndifferentAccess # Initializes an Guard::Options object. `default_opts` is merged into # `opts`. # # @param [Hash] opts the options # @param [Hash] default_opts the default options # def initialize(opts = {}, default_opts = {}) super(default_opts.merge(opts || {})) end end end
Version data entries
37 entries across 37 versions & 4 rubygems