aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array/to_param.rb
blob: 85e91e6b1ac31ba9288688e8f1e2022a315ef1d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Array #:nodoc:
      module ToParam #:nodoc:
        # When an array is given to url_for, it is converted to a slash separated string.
        def to_param
          join '/'
        end
      end
    end
  end
end