module Neco::Command

Command module is a basic module of Neco. It provides many DSLs for validating input, executing business logic, handling errors and much more.

Public Class Methods

included(base) click to toggle source
# File lib/neco/command.rb, line 11
def self.included(base)
  base.class_eval do
    extend ClassMethods
    include InstanceMethods
  end
end