droptheplot/active_json

View on GitHub
lib/active_json/array.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ActiveJson
  class Array < Array
    def to_h
      map do |value|
        STRUCTURES.any? { |s| value.is_a?(s) } ? value.to_h : value
      end
    end
  end
end