Module: Shorthand
- Defined in:
- lib/shorthand.rb
Defined Under Namespace
Modules: Init, Method
Classes: Provider
Class Method Summary
collapse
Class Method Details
.included(target_class) ⇒ Object
3
4
5
6
7
8
|
# File 'lib/shorthand.rb', line 3
def self.included(target_class)
target_class.instance_eval do
include Init
include Method
end
end
|