Sha256: 7544d4582fd4f70ec57b2565c2805e38e4dedbfceaffc6016a44ca374a9c997d
Contents?: true
Size: 270 Bytes
Versions: 8
Compression:
Stored size: 270 Bytes
Contents
module DynamicSitemaps class Url attr_accessor :loc, :last_mod, :change_freq, :priority def initialize(loc, options = {}) @loc, @last_mod, @change_freq, @priority = loc, options[:last_mod], options[:change_freq], options[:priority] end end end
Version data entries
8 entries across 8 versions & 1 rubygems