jbussdieker/ruby-rsync

View on GitHub
lib/rsync/configure.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rsync
  module Configure
    VALID_OPTION_KEYS = [
      :host
    ].freeze

    attr_accessor *VALID_OPTION_KEYS
    
    def configure
      yield self
    end    
  end
end