From 69ecbd1fa30e390ea18e76f16cc33e86b643bd7e Mon Sep 17 00:00:00 2001 From: dewski Date: Sat, 2 Oct 2010 05:54:26 +0800 Subject: [PATCH] removed the occurances of =%> at the end of erb blocks and replaced them with -%> --- app/views/devise/shared/_links.erb | 2 +- test/rails_app/app/views/home/index.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/devise/shared/_links.erb b/app/views/devise/shared/_links.erb index f3ef2f54..af7dd2ba 100644 --- a/app/views/devise/shared/_links.erb +++ b/app/views/devise/shared/_links.erb @@ -21,5 +21,5 @@ <%- if devise_mapping.oauthable? %> <%- resource_class.oauth_providers.each do |provider| %> <%= link_to "Sign in with #{provider.to_s.titleize}", oauth_authorize_url(resource_name, provider) %>
- <% end =%> + <% end -%> <% end -%> \ No newline at end of file diff --git a/test/rails_app/app/views/home/index.html.erb b/test/rails_app/app/views/home/index.html.erb index b0d8fcd5..cbf51378 100644 --- a/test/rails_app/app/views/home/index.html.erb +++ b/test/rails_app/app/views/home/index.html.erb @@ -2,4 +2,4 @@ Home! <%- User.oauth_providers.each do |provider| %> <%= link_to "Sign in with #{provider.to_s.titleize}", user_oauth_authorize_url(provider) %>
-<% end =%> \ No newline at end of file +<% end -%> \ No newline at end of file