Suppression décorateur et helpeur inutile
This commit is contained in:
parent
b5b83e939a
commit
629fa3a03a
22 changed files with 0 additions and 127 deletions
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -1,2 +0,0 @@
|
|||
module Admin::DossierHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module ApplicationHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module CarteHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module CommentairesHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module DemandesHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module DescriptionHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module DossiersHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module RecapitulatifHelper
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module StartHelper
|
||||
end
|
|
@ -1,4 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe AdminDecorator do
|
||||
end
|
|
@ -1,4 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe CarteDecorator do
|
||||
end
|
|
@ -1,4 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe DemandeDecorator do
|
||||
end
|
|
@ -1,4 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe DescriptionDecorator do
|
||||
end
|
|
@ -1,4 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe RecapitulatifDecorator do
|
||||
end
|
|
@ -1,4 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe StartDecorator do
|
||||
end
|
Loading…
Reference in a new issue