Sha256: 9fe315a0abba4b8646139444b5578e792fce5b668e0058c9138b3ba621ecfd21

Contents?: true

Size: 929 Bytes

Versions: 7

Compression:

Stored size: 929 Bytes

Contents

require_dependency "renalware"

module Renalware
  module PD
    def self.table_name_prefix
      "pd_"
    end

    def self.cast_patient(patient)
      ActiveType.cast(patient, ::Renalware::PD::Patient)
    end

    # PD-specific configuration
    #
    # You can override default settings here in an initializer in the host app like so:
    #   Renalware::PD.configure do |config|
    #     config.delivery_intervals = [2.days, 1.week, 3.weeks, 1.year]
    #   end
    #
    #  You can access PD configuration like so
    #    Renalware::PD.config.delivery_intervals
    #
    class Configuration
      include ActiveSupport::Configurable

      config_accessor(:delivery_intervals) { [1.week, 2.weeks, 3.weeks, 4.weeks] }

      config_accessor(:training_durations) { (1..15).map(&:days) }

    end

    def self.config
      @config ||= Configuration.new
    end

    def self.configure
      yield config
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta11 app/models/renalware/pd.rb
renalware-core-2.0.0.pre.beta10 app/models/renalware/pd.rb
renalware-core-2.0.0.pre.beta9 app/models/renalware/pd.rb
renalware-core-2.0.0.pre.beta8 app/models/renalware/pd.rb
renalware-core-2.0.0.pre.beta7 app/models/renalware/pd.rb
renalware-core-2.0.0.pre.beta6 app/models/renalware/pd.rb
renalware-core-2.0.0.pre.beta5 app/models/renalware/pd.rb