Sha256: 3340c347960b8de31eb057fb1e9f597d8cd1be0aec2b42e578ef06e1f50ab8c6
Contents?: true
Size: 524 Bytes
Versions: 2
Compression:
Stored size: 524 Bytes
Contents
# frozen_string_literal: true require 'wireless' module StartupTime # shared dependencies required by multiple components Services = Wireless.new do # the component responsible for managing the build directory once(:builder) { Builder.new } # an interface to the tests configured in resources/tests.yaml once(:registry) { Registry.new } # the tests which remain after the --only and --omit filters have been # applied once(:selected_tests) { |wl| wl[:registry].selected_tests } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
startup-time-1.3.0 | lib/startup_time/services.rb |
startup-time-1.2.0 | lib/startup_time/services.rb |