Sha256: f9ccc97bb5888df0ee6feaa687cd284c076d6696541dc40d72f340937be2e672
Contents?: true
Size: 835 Bytes
Versions: 1
Compression:
Stored size: 835 Bytes
Contents
# Use this hook to configure Broker Broker.setup do |config| # Store private quickbase credentials for authenticating via the api config.secrets_path = 'config/secrets.yml' # Store a table mapping for all quickbase apps you want to connect with config.tables_path = 'config/quickbase_tables.yml' # Directory where your import files will be queued for import config.queue = 'broker_queue' # Directory where your successful imported files will be moved config.processed_path = 'broker_processed' # Directory where your failed imported files will be moved config.failed_path = 'broker_failed' # Uncomment to change the default file type to use for importing # [:csv, :txt] #config.file_ext = :csv # Sets polling wait time before checking for new import files config.poll_interval = 10 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
broker-0.1.2 | lib/broker/templates/broker.rb |