enable style ClassAndModuleChildren

This commit is contained in:
Stella Rouzi 2014-08-06 21:14:00 +03:00
parent 2f814c7320
commit 1c1391c69e
15 changed files with 475 additions and 448 deletions

View file

@ -8,7 +8,7 @@
# Offense count: 20
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/ClassAndModuleChildren:
Enabled: false
Enabled: true
# Offense count: 3
# Cop supports --auto-correct.

View file

@ -1,4 +1,5 @@
class Admin::CallforpapersController < ApplicationController
module Admin
class CallforpapersController < ApplicationController
before_filter :verify_organizer
def show
@ -49,4 +50,5 @@ class Admin::CallforpapersController < ApplicationController
alert: "Creating the call for papers failed. #{@cfp.errors.to_a.join(". ")}.")
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::ConferenceController < ApplicationController
module Admin
class ConferenceController < ApplicationController
before_filter :verify_organizer
def index
@ -172,4 +173,5 @@ class Admin::ConferenceController < ApplicationController
format.json { render json: @conference.to_json }
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::DietchoicesController < ApplicationController
module Admin
class DietchoicesController < ApplicationController
before_filter :verify_organizer
def show
@ -13,4 +14,5 @@ class Admin::DietchoicesController < ApplicationController
redirect_to(admin_conference_dietary_list_path(conference_id: @conference.short_title), alert: "Dietary choices update failed: #{e.message}")
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::DifficultyLevelsController < ApplicationController
module Admin
class DifficultyLevelsController < ApplicationController
before_filter :verify_organizer
def index
@ -26,4 +27,5 @@ class Admin::DifficultyLevelsController < ApplicationController
redirect_to(admin_conference_difficulty_levels_path(conference_id: @conference.short_title))
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::EmailsController < ApplicationController
module Admin
class Admin::EmailsController < ApplicationController
before_filter :verify_organizer
def update
@ -11,4 +12,5 @@ class Admin::EmailsController < ApplicationController
def index
@settings = @conference.email_settings
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::EventtypesController < ApplicationController
module Admin
class EventtypesController < ApplicationController
before_filter :verify_organizer
def show
@ -15,4 +16,5 @@ class Admin::EventtypesController < ApplicationController
conference_id: @conference.short_title),
alert: "Event types update failed: #{e.message}")
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::QuestionsController < ApplicationController
module Admin
class QuestionsController < ApplicationController
before_filter :verify_organizer
def index
@ -40,7 +41,6 @@ class Admin::QuestionsController < ApplicationController
# PUT questions/1
def update
@conference = Conference.find_by(short_title: params[:conference_id])
@question = Question.find(params[:id])
@ -93,4 +93,5 @@ class Admin::QuestionsController < ApplicationController
@questions = Question.where(global: true).all | Question.where(conference_id: @conference.id)
@questions_conference = @conference.questions
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::RoomsController < ApplicationController
module Admin
class RoomsController < ApplicationController
before_filter :verify_organizer
def show
@ -16,4 +17,5 @@ class Admin::RoomsController < ApplicationController
notice: 'Room update failed.')
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::SocialEventsController < ApplicationController
module Admin
class SocialEventsController < ApplicationController
before_filter :verify_organizer
def show
@ -12,4 +13,5 @@ class Admin::SocialEventsController < ApplicationController
redirect_to(admin_conference_social_events_path(conference_id: @conference.short_title), notice: 'Social events update failed.')
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::SupporterLevelsController < ApplicationController
module Admin
class SupporterLevelsController < ApplicationController
before_filter :verify_organizer
def show
@ -13,4 +14,5 @@ class Admin::SupporterLevelsController < ApplicationController
redirect_to(admin_conference_supporter_levels_path(conference_id: @conference.short_title), alert: "Supporter levels update failed: #{e.message}")
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::SupportersController < ApplicationController
module Admin
class SupportersController < ApplicationController
before_filter :verify_organizer
def index
@ -13,4 +14,5 @@ class Admin::SupportersController < ApplicationController
SupporterRegistration.create!(params[:supporter_registration])
redirect_to(admin_conference_supporters_path(conference_id: @conference.short_title), notice: "Supporter added")
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::TracksController < ApplicationController
module Admin
class TracksController < ApplicationController
before_filter :verify_organizer
def show
@ -19,4 +20,5 @@ class Admin::TracksController < ApplicationController
notice: 'Tracks update failed.')
end
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::VenueController < ApplicationController
module Admin
class VenueController < ApplicationController
before_filter :verify_organizer
def index
@ -27,4 +28,5 @@ class Admin::VenueController < ApplicationController
@venue = @conference.venue
render :venue_info
end
end
end

View file

@ -1,4 +1,5 @@
class Admin::VolunteersController < ApplicationController
module Admin
class VolunteersController < ApplicationController
def index
@conference = Conference.find_by(short_title: params[:conference_id])
render :index
@ -22,4 +23,5 @@ class Admin::VolunteersController < ApplicationController
redirect_to(admin_conference_volunteers_info_path(conference_id: params[:conference_id]), alert: "Volunteering options update failed: #{e.message}")
end
end
end
end