Remove unnecessary enconding magic comment

This comment isn't necessary since Ruby 2.0, where UTF-8 became the
default encoding.

I've found this issue thanks to the EmptyLineAfterMagicComment rubocop
rule.
This commit is contained in:
Javi Martín
2019-10-24 16:21:24 +02:00
parent d0d681a44b
commit 9028d82f77
7 changed files with 0 additions and 7 deletions

View File

@@ -1,4 +1,3 @@
# coding: utf-8
# Default admin user (change password after first deploy to a server!)
if Administrator.count == 0 && !Rails.env.test?
admin = User.create!(username: "admin", email: "admin@consul.dev", password: "12345678",

View File

@@ -1,4 +1,3 @@
# coding: utf-8
require "rails_helper"
describe "Debates" do

View File

@@ -1,4 +1,3 @@
# coding: utf-8
require "rails_helper"
describe "Proposal ballots" do

View File

@@ -1,4 +1,3 @@
# coding: utf-8
require "rails_helper"
describe "Proposals" do

View File

@@ -1,4 +1,3 @@
# coding: utf-8
require "rails_helper"
describe DeviseMailer do

View File

@@ -1,4 +1,3 @@
# coding: utf-8
require "rails_helper"
describe Debate do

View File

@@ -1,4 +1,3 @@
# coding: utf-8
require "rails_helper"
describe Proposal do