Sha256: d3fbdf77d85652d54913518e0c8336036899512e4eb83c0a1736dd708f9f3af8
Contents?: true
Size: 945 Bytes
Versions: 14
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
14 entries across 14 versions & 1 rubygems