aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/ordered_options.rb
blob: 3172f62f0d100b6b0927f1acb94266ec2f834cee (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
                                                                           
                    











                                      
         
 



                              





                                                       
 


                                    
 


                                      





                                                    
       
     

   
                                                          


                            
 










                                  
   
# OrderedHash is namespaced to prevent conflicts with other implementations
module ActiveSupport
  # Hash is ordered in Ruby 1.9!
  if RUBY_VERSION >= '1.9'
    OrderedHash = ::Hash
  else
    class OrderedHash < Array #:nodoc:
      def []=(key, value)
        if pair = assoc(key)
          pair.pop
          pair << value
        else
          self << [key, value]
        end
      end

      def [](key)
        pair = assoc(key)
        pair ? pair.last : nil
      end
      
      def delete(key)
        pair = assoc(key)
        pair ? array_index = index(pair) : nil
        array_index ? delete_at(array_index).last : nil
      end

      def keys
        collect { |key, value| key }
      end

      def values
        collect { |key, value| value }
      end

      def to_hash
        returning({}) do |hash|
          each { |array| hash[array[0]] = array[1] }
        end
      end
    end
  end
end

class OrderedOptions < ActiveSupport::OrderedHash #:nodoc:
  def []=(key, value)
    super(key.to_sym, value)
  end

  def [](key)
    super(key.to_sym)
  end

  def method_missing(name, *args)
    if name.to_s =~ /(.*)=$/
      self[$1.to_sym] = args.first
    else
      self[name]
    end
  end
end