diff options
author | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-11-13 11:19:20 -0500 |
---|---|---|
committer | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-11-13 11:19:20 -0500 |
commit | 5a2364e50620b825d5325bfbbc5d0f3d8578e25f (patch) | |
tree | 0e985374cc7b4bd8111c012072c39218335881ef /lib/oxidized/model/model.rb | |
parent | 1400b842f6dc61e662ce15f72f578a55126ffc06 (diff) | |
parent | f2da63369fcb754e3715091cc4fd2f93db42106e (diff) |
Merge pull request #2 from Shopify/testing-refactoring
Testing refactoring
Diffstat (limited to 'lib/oxidized/model/model.rb')
-rw-r--r-- | lib/oxidized/model/model.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/oxidized/model/model.rb b/lib/oxidized/model/model.rb index e0e3941..c95cc67 100644 --- a/lib/oxidized/model/model.rb +++ b/lib/oxidized/model/model.rb @@ -11,7 +11,8 @@ module Oxidized klass.instance_variable_set '@cfg', Hash.new { |h,k| h[k] = [] } klass.instance_variable_set '@procs', Hash.new { |h,k| h[k] = [] } klass.instance_variable_set '@expect', [] - klass.const_set :CFG, CFG + klass.instance_variable_set '@comment', nil + klass.instance_variable_set '@prompt', nil end def comment _comment='# ' return @comment if @comment |