Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure eval call knows its line numbers etc #426

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions lib/sitemap_generator/templates.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ module SitemapGenerator
# Define an accessor method for each template file.
class Templates
FILES = {
:sitemap_sample => 'sitemap.rb',
:sitemap_sample => 'sitemap.rb',
}

# Dynamically define accessors for each key defined in <tt>FILES</tt>
attr_accessor(*FILES.keys)
FILES.keys.each do |name|
eval <<-END

FILES.each_key do |name|
eval(<<-ACCESSOR, binding, __FILE__ , __LINE__ + 1)
define_method(:#{name}) do
@#{name} ||= read_template(:#{name})
end
END
ACCESSOR
end

def initialize(root = SitemapGenerator.root)
Expand Down