Sha256: 480ed8a7cf7515d1b900a48bf6937339fd111224c7283c7d6517690439fefe18

Contents?: true

Size: 805 Bytes

Versions: 88

Compression:

Stored size: 805 Bytes

Contents

# frozen-string-literal: true

#
class Roda
  module RodaPlugins
    # The slash_path_empty plugin considers "/" as an empty path,
    # in addition to the default of "" being considered an empty
    # path.  This makes it so +r.is+ without an argument will match
    # a path of "/", and +r.is+ and verb methods such as +r.get+ and
    # +r.post+ will match if the path is "/" after the arguments
    # are processed.  This can make it easier to handle applications
    # where a trailing "/" in the path should be ignored.
    module SlashPathEmpty
      module RequestMethods
        private

        # Consider the path empty if it is "/".
        def empty_path?
          super || remaining_path == '/'
        end
      end
    end

    register_plugin(:slash_path_empty, SlashPathEmpty)
  end
end

Version data entries

88 entries across 88 versions & 1 rubygems

Version Path
roda-3.86.0 lib/roda/plugins/slash_path_empty.rb
roda-3.85.0 lib/roda/plugins/slash_path_empty.rb
roda-3.84.0 lib/roda/plugins/slash_path_empty.rb
roda-3.83.0 lib/roda/plugins/slash_path_empty.rb
roda-3.82.0 lib/roda/plugins/slash_path_empty.rb
roda-3.81.0 lib/roda/plugins/slash_path_empty.rb
roda-3.79.0 lib/roda/plugins/slash_path_empty.rb
roda-3.78.0 lib/roda/plugins/slash_path_empty.rb
roda-3.77.0 lib/roda/plugins/slash_path_empty.rb
roda-3.76.0 lib/roda/plugins/slash_path_empty.rb
roda-3.75.0 lib/roda/plugins/slash_path_empty.rb
roda-3.74.0 lib/roda/plugins/slash_path_empty.rb
roda-3.73.0 lib/roda/plugins/slash_path_empty.rb
roda-3.72.0 lib/roda/plugins/slash_path_empty.rb
roda-3.71.0 lib/roda/plugins/slash_path_empty.rb
roda-3.70.0 lib/roda/plugins/slash_path_empty.rb
roda-3.69.0 lib/roda/plugins/slash_path_empty.rb
roda-3.68.0 lib/roda/plugins/slash_path_empty.rb
roda-3.67.0 lib/roda/plugins/slash_path_empty.rb
roda-3.66.0 lib/roda/plugins/slash_path_empty.rb