Sha256: 9efeed9aa9fceced5afe54c33c5d552dac284c5e81b084c8c495dacbb10b67a4

Contents?: true

Size: 1.02 KB

Versions: 7

Compression:

Stored size: 1.02 KB

Contents

require 'active_support/concern'

module RailsWorkflow
  module Operations
    # = Workflow::ProcessTemplate::Dependenceis
    #
    # Operation dependencies is a set of conditions. Operation can be build if all that
    # dependenceis / conditions are satisfied. This is default implementation of dependenceis
    # which used to build operation dependency on other operations. You can customize dependency
    # for example you can add some additional logic depending on existiong processes / operations
    # or other conditions in your system.
    #

    module Dependencies

      extend ActiveSupport::Concern

      included do

        serialize :dependencies, JSON

        # def dependencies=(dependencies)
        #   write_attribute(:dependencies, dependencies.to_json.to_s)
        # end
        #
        # def dependencies
        #   value = read_attribute(:dependencies)
        #   if value.present?
        #     JSON.parse(value)
        #   else
        #     []
        #   end
        # end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rails_workflow-0.3.7 app/concerns/rails_workflow/operations/dependencies.rb
rails_workflow-0.3.6 app/concerns/rails_workflow/operations/dependencies.rb
rails_workflow-0.3.5 app/concerns/rails_workflow/operations/dependencies.rb
rails_workflow-0.3.4 app/concerns/rails_workflow/operations/dependencies.rb
rails_workflow-0.3.3 app/concerns/rails_workflow/operations/dependencies.rb
rails_workflow-0.3.2 app/concerns/rails_workflow/operations/dependencies.rb
rails_workflow-0.3.1 app/concerns/rails_workflow/operations/dependencies.rb