Sha256: bcb20941dc9580cc82f753a2bd0bb6441c7ac6a45a31da672a225964cd3f1361
Contents?: true
Size: 945 Bytes
Versions: 30
Compression:
Stored size: 945 Bytes
Contents
module Bibliothecary class Configuration attr_accessor :ignored_dirs attr_accessor :ignored_files attr_accessor :carthage_parser_host attr_accessor :clojars_parser_host attr_accessor :mix_parser_host attr_accessor :yarn_parser_host attr_accessor :conda_parser_host attr_accessor :swift_parser_host attr_accessor :cabal_parser_host def initialize @ignored_dirs = ['.git', 'node_modules', 'bower_components', 'vendor', 'dist'] @ignored_files = [] @carthage_parser_host = 'https://carthage.libraries.io' @clojars_parser_host = 'https://clojars.libraries.io' @mix_parser_host = 'https://mix.libraries.io' @yarn_parser_host = 'https://yarn-parser.libraries.io' @conda_parser_host = 'https://conda-parser.libraries.io' @swift_parser_host = 'http://swift.libraries.io' @cabal_parser_host = 'http://cabal.libraries.io' end end end
Version data entries
30 entries across 30 versions & 1 rubygems