Module: ProtectedConstructor
- Defined in:
- lib/protected_constructor.rb,
lib/ProtectedConstructor/version.rb
Overview
Constant Summary collapse
- VERSION =
'4.0.0'
Class Method Summary collapse
Class Method Details
.included(klass) ⇒ Object
38 39 40 41 42 43 44 |
# File 'lib/protected_constructor.rb', line 38 def self.included(klass) klass.module_eval do class << self protected :new end end end |