Charyf/charyf-core

View on GitHub
lib/charyf/engine/intent/processors/helpers.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Charyf
  module Engine
    class Intent
      module Processor
        module Helpers

          def self.included(base)
            base.extend(ClassMethods)
          end

          module ClassMethods
          end # End of ClassMethods

          def unknown
            Charyf::Engine::Intent.unknown
          end

        end
      end
    end
  end
end