Module: Mutant
- Defined in:
- lib/mutant.rb,
lib/ruby-mutant/base.rb,
lib/ruby-mutant/output.rb,
lib/ruby-mutant/version.rb
Defined Under Namespace
Modules: ClassMethods Classes: Output
Constant Summary collapse
- VERSION =
"1.0.0"
Instance Attribute Summary collapse
-
#output ⇒ Object
Returns the value of attribute output.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#output ⇒ Object
Returns the value of attribute output.
9 10 11 |
# File 'lib/ruby-mutant/base.rb', line 9 def output @output end |
Class Method Details
.included(klass) ⇒ Object
11 12 13 |
# File 'lib/ruby-mutant/base.rb', line 11 def self.included(klass) klass.extend(ClassMethods) end |
Instance Method Details
#initialize(*args) ⇒ Object
97 98 99 |
# File 'lib/ruby-mutant/base.rb', line 97 def initialize(*args) @output = Output.new end |