lib/generators/buoys/install_generator.rb in buoys-0.5.0 vs lib/generators/buoys/install_generator.rb in buoys-0.6.0
- old
+ new
@@ -8,10 +8,10 @@
def create_files
copy_file 'buoys.en.yml', 'config/locales/buoys.en.yml'
copy_file 'breadcrumbs.rb', 'config/buoys/breadcrumbs.rb'
- if %(haml slim).include?(template_type = options[:template])
+ if %w(haml slim).include?(template_type = options[:template])
copy_file "_buoys.html.#{template_type}", "app/views/breadcrumbs/_buoys.html.#{template_type}"
else
copy_file '_buoys.html.erb', 'app/views/breadcrumbs/_buoys.html.erb'
end
end