Sha256: 1b9e0695d398971cf89bc24a6ac8ca5a7f2a87bbcb94c65a7fb0a753f046596f
Contents?: true
Size: 289 Bytes
Versions: 14
Compression:
Stored size: 289 Bytes
Contents
module RailsSitemap class LocationsController < ApplicationController before_action :set_locations def index respond_to do |format| format.kml end end private def set_locations @locations = RailsSitemap.locations ||= [] end end end
Version data entries
14 entries across 14 versions & 1 rubygems