Sha256: 344c48e46c8fdf429008e0ef9897702a30b2ce5c78c954a37d0265ac31479df0

Contents?: true

Size: 583 Bytes

Versions: 193

Compression:

Stored size: 583 Bytes

Contents

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Array #:nodoc:
      module ExtractOptions
        # Extracts options from a set of arguments. Removes and returns the last
        # element in the array if it's a hash, otherwise returns a blank hash.
        #
        #   def options(*args)
        #     args.extract_options!
        #   end
        #
        #   options(1, 2)           # => {}
        #   options(1, 2, :a => :b) # => {:a=>:b}
        def extract_options!
          last.is_a?(::Hash) ? pop : {}
        end
      end
    end
  end
end

Version data entries

193 entries across 160 versions & 26 rubygems

Version Path
3mix-castronaut-0.5.0.2 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
davidlee-state-fu-0.2.0 lib/state_fu/active_support_lite/array/extract_options.rb
davidlee-state-fu-0.3.1 lib/state_fu/active_support_lite/array/extract_options.rb
masover-castronaut-0.4.4.4 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
masover-castronaut-0.4.4.5 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
masover-castronaut-0.5.0.1 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
p8-castronaut-0.6.1.1 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.4.1 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.4.2 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.4.3 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.4.4 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.4.5 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.4.6 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.5.0 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.5.1 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.5.2 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.5.3 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.5.4 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.6.0 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb
relevance-castronaut-0.6.1 vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb