You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/pagy-43.4.4/apps/index.rb

10 lines
215 B

# frozen_string_literal: true
# PagyApps module
module PagyApps
# Return the hash of app name/path
INDEX = Dir[File.expand_path('./*.ru', __dir__)].to_h do |f|
[File.basename(f, '.ru'), f]
end.freeze
end