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:
@@ -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",
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
require "rails_helper"
|
||||
|
||||
describe "Debates" do
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
require "rails_helper"
|
||||
|
||||
describe "Proposal ballots" do
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
require "rails_helper"
|
||||
|
||||
describe "Proposals" do
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
require "rails_helper"
|
||||
|
||||
describe DeviseMailer do
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
require "rails_helper"
|
||||
|
||||
describe Debate do
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
require "rails_helper"
|
||||
|
||||
describe Proposal do
|
||||
|
||||
Reference in New Issue
Block a user