Sha256: 2e9b8bf0847c99a40bfec72a848a334b1aa404da67e0df196f7dbea3c29abf48
Contents?: true
Size: 495 Bytes
Versions: 23
Compression:
Stored size: 495 Bytes
Contents
# frozen_string_literal: true # To create outside of Rails, insert a row with values for the following columns # into the `delayed_jobs` table: # # handler: {see h7_message_example.yml} # run_at: {current_time} # # Notes: # # - the key `raw_message` for the `handler` column must have line endings "\n" # - to run delayed_jobs see in development use rake jobs:work # FeedJob = Struct.new(:raw_message) do def perform Renalware::Feeds.message_processor.call(raw_message) end end
Version data entries
23 entries across 23 versions & 1 rubygems