Sha256: 83edc69587306e8d7f548a69b39d4cacd2c2f173ce3fda4d98908fea898de274
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true require "parallel" module Miteru class Configuration # @return [Boolean] attr_accessor :auto_download # @return [Boolean] attr_accessor :ayashige # @return [Boolean] attr_accessor :directory_traveling # @return [String] attr_accessor :download_to # @return [Boolean] attr_accessor :post_to_slack # @return [Integer] attr_accessor :size # @return [Integer] attr_accessor :threads # @return [Boolean] attr_accessor :verbose def initialize @auto_download = false @ayashige = false @directory_traveling = false @download_to = "/tmp" @post_to_slack = false @size = 100 @threads = Parallel.processor_count @verbaose = false end def auto_download? @auto_download end def ayashige? @ayashige end def directory_traveling? @directory_traveling end def post_to_slack? @post_to_slack end def verbose? @verbaose end end # @return [Miteru::Configuration] Miteru's current configuration def self.configuration @configuration ||= Configuration.new end # Set Miteru's configuration # @param config [Miteru::Configuration] def self.configuration=(config) @configuration = config end # Modify Miteru's current configuration # @yieldparam [Miteru::Configuration] config current Miteru config def self.configure yield configuration end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
miteru-0.12.10 | lib/miteru/configuration.rb |
miteru-0.12.9 | lib/miteru/configuration.rb |