Codebase list ohcount / d62f219c-a984-415f-b69c-f521b00b8f15/main ruby / gestalt / trigger.rb
d62f219c-a984-415f-b69c-f521b00b8f15/main

Tree @d62f219c-a984-415f-b69c-f521b00b8f15/main (Download .tar.gz)

trigger.rb @d62f219c-a984-415f-b69c-f521b00b8f15/main

3581673
 
 
 
 
 
 
 
 
 
 
 
 
module Ohcount
  module Gestalt
    class Trigger
      attr_reader :name, :count

      def initialize(args = {})
        @name = args[:name]
        @count = args[:count] || 1
      end

    end
  end
end