Ruby: defining class level hash with default values - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T01:55:07Zhttp://stackoverflow.com/feeds/question/318969http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318969/ruby-defining-class-level-hash-with-default-values1Ruby: defining class level hash with default valuesJason Miesionczek2008-11-25T21:37:31Z2008-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 => 0, :warning => 1, :info => 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#3189813Answer by Dustin for Ruby: defining class level hash with default valuesDustin2008-11-25T21:43:01Z2008-11-25T21:43:01Z<p>You can do this:</p>
<pre><code>class LogEntry
EntryType = { :error => 0, :warning => 1, :info => 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#3189941Answer by Chris Lloyd for Ruby: defining class level hash with default valuesChris Lloyd2008-11-25T21:47:19Z2008-11-25T21:47:19Z<p>Alternatively you could make a class method:</p>
<pre><code>class LogEntry
def self.types
{ :error => 0, :warning => 1, :info => 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#3190761Answer by Toby Hede for Ruby: defining class level hash with default valuesToby Hede2008-11-25T22:08:38Z2008-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#3244940Answer by Pistos for Ruby: defining class level hash with default valuesPistos2008-11-27T19:06:30Z2008-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 <=>( other )
ERROR_RANKING.index( @type ) <=> ERROR_RANKING.index( other.type )
end
end
entry1 = LogEntry.new( :error )
entry2 = LogEntry.new( :warning )
puts entry1.type.inspect
#=> :error
puts entry2.type.inspect
#=> :warning
puts( ( entry1 > entry2 ).inspect )
#=> false
puts( ( entry1 < entry2 ).inspect )
#=> 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>