Ruby: defining class level hash with default values - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T01:55:07Z http://stackoverflow.com/feeds/question/318969 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318969/ruby-defining-class-level-hash-with-default-values 1 Ruby: defining class level hash with default values Jason Miesionczek 2008-11-25T21:37:31Z 2008-11-27T19:06:29Z <p>i have a basic ruby class:</p> <pre><code>class LogEntry end </code></pre> <p>and what i would like to do is be able to define a hash with a few values like so:</p> <pre><code>EntryType = { :error =&gt; 0, :warning =&gt; 1, :info =&gt; 2 } </code></pre> <p>so that i can access the values like this (or something similar):</p> <pre><code>LogEntry.EntryType[:error] </code></pre> <p>is this even possible in Ruby? am i going about this the right way?</p> http://stackoverflow.com/questions/318969/ruby-defining-class-level-hash-with-default-values/318981#318981 3 Answer by Dustin for Ruby: defining class level hash with default values Dustin 2008-11-25T21:43:01Z 2008-11-25T21:43:01Z <p>You can do this:</p> <pre><code>class LogEntry EntryType = { :error =&gt; 0, :warning =&gt; 1, :info =&gt; 2 } end </code></pre> <p>But you want to reference it as</p> <pre><code>LogEntry::EntryType[:error] </code></pre> http://stackoverflow.com/questions/318969/ruby-defining-class-level-hash-with-default-values/318994#318994 1 Answer by Chris Lloyd for Ruby: defining class level hash with default values Chris Lloyd 2008-11-25T21:47:19Z 2008-11-25T21:47:19Z <p>Alternatively you could make a class method:</p> <pre><code>class LogEntry def self.types { :error =&gt; 0, :warning =&gt; 1, :info =&gt; 2 } end end # And a simple test LogEntry.types[:error].should be_an_instance_of(Hash) </code></pre> http://stackoverflow.com/questions/318969/ruby-defining-class-level-hash-with-default-values/319076#319076 1 Answer by Toby Hede for Ruby: defining class level hash with default values Toby Hede 2008-11-25T22:08:38Z 2008-11-25T22:08:38Z <p>Why do you need a hash?</p> <p>Can you not just declare the entry types on the LogEntry class?</p> <pre><code>class LogEntry @@ErrorType = 0 End LogEntry.ErrorType </code></pre> http://stackoverflow.com/questions/318969/ruby-defining-class-level-hash-with-default-values/324494#324494 0 Answer by Pistos for Ruby: defining class level hash with default values Pistos 2008-11-27T19:06:30Z 2008-11-27T19:06:30Z <p>I'm curious why you can't just make @error_type an instance variable on LogEntry instances?</p> <pre><code>class LogEntry attr_reader :type ERROR_RANKING = [ :error, :warning, :info, ] include Comparable def initialize( type ) @type = type end def &lt;=&gt;( other ) ERROR_RANKING.index( @type ) &lt;=&gt; ERROR_RANKING.index( other.type ) end end entry1 = LogEntry.new( :error ) entry2 = LogEntry.new( :warning ) puts entry1.type.inspect #=&gt; :error puts entry2.type.inspect #=&gt; :warning puts( ( entry1 &gt; entry2 ).inspect ) #=&gt; false puts( ( entry1 &lt; entry2 ).inspect ) #=&gt; true </code></pre> <p>But see also Ruby's built in logging library, <a href="http://www.ruby-doc.org/core/classes/Logger.html" rel="nofollow">Logger</a>.</p>