Ensure files end in newlines (POSIX compliance)

This commit is contained in:
Aaron Franke
2020-10-04 05:13:39 -04:00
parent 9f3a9ac4e1
commit 191b528ad7
10 changed files with 10 additions and 10 deletions

View File

@@ -522,4 +522,4 @@ ZipImagePlayer.prototype = {
// added
export { ZipImagePlayer };
export { ZipImagePlayer };

View File

@@ -1 +1 @@
location.reload();
location.reload();

View File

@@ -1 +1 @@
{"counts": {"posts": <%= @count %>}}
{"counts": {"posts": <%= @count %>}}

View File

@@ -3,4 +3,4 @@
<posts>
<%= @count %>
</posts>
</counts>
</counts>

View File

@@ -1 +1 @@
<%= raw @results.map {|ip_addr, count| {ip_addr: ip_addr.to_s, count: count}}.to_json %>
<%= raw @results.map {|ip_addr, count| {ip_addr: ip_addr.to_s, count: count}}.to_json %>

View File

@@ -1 +1 @@
<%= raw @results.map {|user, count| {user_id: user.id, count: count}}.to_json %>
<%= raw @results.map {|user, count| {user_id: user.id, count: count}}.to_json %>

View File

@@ -11,4 +11,4 @@
</div>
</div>
<%= render "notes/secondary_links" %>
<%= render "notes/secondary_links" %>

View File

@@ -2,4 +2,4 @@
<%= render "posts/partials/show/ugoira_webm", :post => post %>
<% else %>
<%= render "posts/partials/show/ugoira_original", :post => post %>
<% end %>
<% end %>

View File

@@ -1,2 +1,2 @@
local all postgres,danbooru trust
host all postgres,danbooru 127.0.0.1/32 trust
host all postgres,danbooru 127.0.0.1/32 trust

View File

@@ -1,4 +1,4 @@
require 'test_helper'
require 'test_helper'
module Sources
class NicoSeigaTest < ActiveSupport::TestCase