Remove now useless encoding statements

As utf-8 is the default encoding since Ruby 2,
this is no longer needed
This commit is contained in:
gregoirenovel 2017-11-20 14:14:00 +01:00
parent 8b80165872
commit 5eb9d6854c
4 changed files with 0 additions and 8 deletions

View file

@ -1,5 +1,3 @@
# encoding: utf-8
class BaseUploader < CarrierWave::Uploader::Base
def cache_dir
if Rails.env.production?

View file

@ -1,5 +1,3 @@
# encoding: utf-8
class CerfaUploader < BaseUploader
before :cache, :set_original_filename

View file

@ -1,5 +1,3 @@
# encoding: utf-8
class PieceJustificativeUploader < BaseUploader
before :cache, :set_original_filename

View file

@ -1,5 +1,3 @@
# encoding: utf-8
class ProcedureLogoUploader < BaseUploader
def root
File.join(Rails.root, "public")