Sha256: ceb19f1483939eaad7f1e2bfe6667906cc7883733a747807f7a4addf1328fdc5

Contents?: true

Size: 275 Bytes

Versions: 2

Compression:

Stored size: 275 Bytes

Contents

module GemVersionCheck
  class Configuration
    attr_reader :github_host, :show_progress_bar

    def initialize(settings = {})
      @github_host = settings[:github_host]     || "github.com"
      @show_progress_bar = settings[:show_progress_bar] || false
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gem_version_check-0.0.10 lib/gem_version_check/configuration.rb
gem_version_check-0.0.9 lib/gem_version_check/configuration.rb