diff options
author | Elvin Efendi <elvin.efendiev@shopify.com> | 2015-10-27 14:49:52 -0400 |
---|---|---|
committer | Elvin Efendi <elvin.efendiev@shopify.com> | 2015-11-13 11:12:31 -0500 |
commit | f2da63369fcb754e3715091cc4fd2f93db42106e (patch) | |
tree | 0e985374cc7b4bd8111c012072c39218335881ef /lib/oxidized/model/model.rb | |
parent | 1400b842f6dc61e662ce15f72f578a55126ffc06 (diff) |
better test framework, more specs and Travis CI
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 |