Sha256: 9655841f038f05d043a294fdee40f9aa0272259b9c77a5f680339a6715e2d3ac

Contents?: true

Size: 287 Bytes

Versions: 1

Compression:

Stored size: 287 Bytes

Contents

# frozen_string_literal: true

# This is the registrar for FileSystem channels, basically storing paths

module DispatchRider
  module Registrars
    class FileSystemChannel < Base
      def value(_name, options = {})
        File.expand_path(options[:path])
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dispatch-rider-2.2.0 lib/dispatch-rider/registrars/file_system_channel.rb