Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 ruby / gestalt / trigger.rb
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

trigger.rb @upstream/4.0.0+git20210223.6654d48raw · history · blame

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

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

    end
  end
end