Suppression décorateur et helpeur inutile

This commit is contained in:
Xavier J 2015-08-11 15:07:54 +02:00
parent b5b83e939a
commit 629fa3a03a
22 changed files with 0 additions and 127 deletions

View file

@ -1,13 +0,0 @@
class AdminDecorator < Draper::Decorator
delegate_all
# Define presentation-specific methods here. Helpers are accessed through
# `helpers` (aka `h`). You can override attributes, for example:
#
# def created_at
# helpers.content_tag :span, class: 'time' do
# object.created_at.strftime("%a %m/%d/%y")
# end
# end
end

View file

@ -1,13 +0,0 @@
class CarteDecorator < Draper::Decorator
delegate_all
# Define presentation-specific methods here. Helpers are accessed through
# `helpers` (aka `h`). You can override attributes, for example:
#
# def created_at
# helpers.content_tag :span, class: 'time' do
# object.created_at.strftime("%a %m/%d/%y")
# end
# end
end

View file

@ -1,13 +0,0 @@
class DemandeDecorator < Draper::Decorator
delegate_all
# Define presentation-specific methods here. Helpers are accessed through
# `helpers` (aka `h`). You can override attributes, for example:
#
# def created_at
# helpers.content_tag :span, class: 'time' do
# object.created_at.strftime("%a %m/%d/%y")
# end
# end
end

View file

@ -1,13 +0,0 @@
class DescriptionDecorator < Draper::Decorator
delegate_all
# Define presentation-specific methods here. Helpers are accessed through
# `helpers` (aka `h`). You can override attributes, for example:
#
# def created_at
# helpers.content_tag :span, class: 'time' do
# object.created_at.strftime("%a %m/%d/%y")
# end
# end
end

View file

@ -1,7 +0,0 @@
class EtablissementDecorator < Draper::Decorator
delegate_all
def siege_social_true_false
siege_social? ? 'Cet établissement est le siège social' : 'Cet établissement n\'est pas le siège social'
end
end

View file

@ -1,13 +0,0 @@
class RecapitulatifDecorator < Draper::Decorator
delegate_all
# Define presentation-specific methods here. Helpers are accessed through
# `helpers` (aka `h`). You can override attributes, for example:
#
# def created_at
# helpers.content_tag :span, class: 'time' do
# object.created_at.strftime("%a %m/%d/%y")
# end
# end
end

View file

@ -1,13 +0,0 @@
class StartDecorator < Draper::Decorator
delegate_all
# Define presentation-specific methods here. Helpers are accessed through
# `helpers` (aka `h`). You can override attributes, for example:
#
# def created_at
# helpers.content_tag :span, class: 'time' do
# object.created_at.strftime("%a %m/%d/%y")
# end
# end
end

View file

@ -1,2 +0,0 @@
module Admin::DossierHelper
end

View file

@ -1,2 +0,0 @@
module ApplicationHelper
end

View file

@ -1,2 +0,0 @@
module CarteHelper
end

View file

@ -1,2 +0,0 @@
module CommentairesHelper
end

View file

@ -1,2 +0,0 @@
module DemandesHelper
end

View file

@ -1,2 +0,0 @@
module DescriptionHelper
end

View file

@ -1,2 +0,0 @@
module DossiersHelper
end

View file

@ -1,2 +0,0 @@
module RecapitulatifHelper
end

View file

@ -1,2 +0,0 @@
module StartHelper
end

View file

@ -1,4 +0,0 @@
require 'spec_helper'
describe AdminDecorator do
end

View file

@ -1,4 +0,0 @@
require 'spec_helper'
describe CarteDecorator do
end

View file

@ -1,4 +0,0 @@
require 'spec_helper'
describe DemandeDecorator do
end

View file

@ -1,4 +0,0 @@
require 'spec_helper'
describe DescriptionDecorator do
end

View file

@ -1,4 +0,0 @@
require 'spec_helper'
describe RecapitulatifDecorator do
end

View file

@ -1,4 +0,0 @@
require 'spec_helper'
describe StartDecorator do
end