class MovieOrganizer::Options

Public Instance Methods

[](key) click to toggle source
# File lib/movie_organizer/options.rb, line 9
def [](key)
  @@_options[key]
end
hash() click to toggle source
# File lib/movie_organizer/options.rb, line 13
def hash
  @@_options
end

Private Instance Methods

initialize_hash(hash) click to toggle source
# File lib/movie_organizer/options.rb, line 19
def initialize_hash(hash)
  @@_options = hash
end