From 79ef756f645153b91643765573230814257d0cbf Mon Sep 17 00:00:00 2001
From: Samy KACIMI <samy.kacimi@gmail.com>
Date: Wed, 5 Apr 2017 00:47:17 +0200
Subject: [PATCH] fix rubocop issues

---
 Gemfile              | 2 +-
 app/models/follow.rb | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Gemfile b/Gemfile
index 87ea77735c..0deed9ae01 100644
--- a/Gemfile
+++ b/Gemfile
@@ -69,8 +69,8 @@ end
 group :test do
   gem 'simplecov', require: false
   gem 'webmock'
-  gem 'rspec-sidekiq'
   gem 'faker'
+  gem 'rspec-sidekiq'
 end
 
 group :development do
diff --git a/app/models/follow.rb b/app/models/follow.rb
index fd7325f059..b6b9dca7cb 100644
--- a/app/models/follow.rb
+++ b/app/models/follow.rb
@@ -4,7 +4,7 @@ class Follow < ApplicationRecord
   include Paginable
 
   belongs_to :account, counter_cache: :following_count, required: true
-  
+
   belongs_to :target_account,
              class_name: 'Account',
              counter_cache: :followers_count,
-- 
GitLab