Skip to content

Commit

Permalink
Rename the last two .erubis templates to .erb
Browse files Browse the repository at this point in the history
  • Loading branch information
dazoakley committed Oct 19, 2011
1 parent 46897a6 commit 6aa3cae
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/index.task
Expand Up @@ -31,7 +31,7 @@ begin
task :solr_schema_xml do task :solr_schema_xml do
@index_config = @ms.config[:index] @index_config = @ms.config[:index]


template_file = File.open( "#{File.dirname(__FILE__)}/../templates/solr_schema.xml.erubis", "r" ) template_file = File.open( "#{File.dirname(__FILE__)}/../templates/solr_schema.xml.erb", "r" )
template = Erubis::Eruby.new( template_file.read ) template = Erubis::Eruby.new( template_file.read )
template_file.close() template_file.close()


Expand Down
2 changes: 1 addition & 1 deletion tasks/wtsi_search.task
Expand Up @@ -121,7 +121,7 @@ begin
# Dump data to XML following WTSI search index requirements # Dump data to XML following WTSI search index requirements
puts " - Writing data to disk" puts " - Writing data to disk"


template_file = File.new( "#{File.dirname(__FILE__)}/../templates/wtsi_search_engine.xml.erubis", 'r' ) template_file = File.new( "#{File.dirname(__FILE__)}/../templates/wtsi_search_engine.xml.erb", 'r' )
template = Erubis::Eruby.new( template_file.read ) template = Erubis::Eruby.new( template_file.read )
template_file.close() template_file.close()


Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 6aa3cae

Please sign in to comment.