chore(rubocop): giganto rubocop commit.

muahahahah
This commit is contained in:
Joseph Mastey
2017-12-05 18:46:21 -06:00
parent 284cd8811c
commit 9902345291
120 changed files with 743 additions and 635 deletions
+44 -43
View File
@@ -1,80 +1,81 @@
source 'https://rubygems.org'
# frozen_string_literal: true
source "https://rubygems.org"
#don't upgrade
gem 'rails', '5.1.4'
gem "rails", "5.1.4"
ruby '2.4.2'
ruby "2.4.2"
gem 'rake'
gem 'rails-perftest'
gem 'ruby-prof'
gem "rails-perftest"
gem "rake"
gem "ruby-prof"
# Bundle edge Rails instead:
# gem 'rails', git: 'https://github.com/rails/rails'
gem 'sqlite3'
gem 'foreman'
gem 'crack', '0.3.2'
gem "crack", "0.3.2"
gem "foreman"
gem "sqlite3"
# Pry for Rails, not in dev group in case running via prod/staging @ a training
gem 'pry-rails'
gem "pry-rails"
group :development, :mysql do
gem 'brakeman'
gem 'bundler-audit'
gem 'guard-brakeman'
gem 'guard-livereload'
gem 'guard-rspec'
gem 'guard-shell'
gem 'pry'
gem 'rack-livereload'
gem 'rb-fsevent'
gem 'travis-lint'
gem 'better_errors'
gem 'binding_of_caller'
gem "better_errors"
gem "binding_of_caller"
gem "brakeman"
gem "bundler-audit"
gem "guard-brakeman"
gem "guard-livereload"
gem "guard-rspec"
gem "guard-shell"
gem "pry"
gem "rack-livereload"
gem "rb-fsevent"
gem "rubocop-github"
gem "travis-lint"
end
gem 'simplecov', :require => false, :group => :test
gem "simplecov", require: false, group: :test
group :development, :test, :mysql do
gem 'launchy'
gem 'capybara'
gem 'database_cleaner'
gem 'poltergeist'
gem 'rspec-rails'
gem 'test-unit'
gem "capybara"
gem "database_cleaner"
gem "launchy"
gem "poltergeist"
gem "rspec-rails"
gem "test-unit"
end
group :mysql do
gem 'mysql2'
gem "mysql2"
end
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails'
gem 'coffee-rails'
gem 'jquery-fileupload-rails'
gem 'uglifier'
gem 'turbolinks'
gem "coffee-rails"
gem "jquery-fileupload-rails"
gem "sass-rails"
gem "turbolinks"
gem "uglifier"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'jquery-rails'
gem "jquery-rails"
# To use ActiveModel has_secure_password
gem 'bcrypt'
gem "bcrypt"
# Use unicorn as the app server
gem 'unicorn'
gem "unicorn"
# Pow related gem
gem 'powder'
gem "powder"
gem 'aruba'
gem 'execjs'
gem 'therubyracer'
gem "aruba"
gem "execjs"
gem "therubyracer"
# Add SMTP server support using MailCatcher
# NOTE: https://github.com/sj26/mailcatcher#bundler
@@ -87,6 +88,6 @@ gem 'therubyracer'
#end
#For Rails 4.2
gem 'responders'
gem "responders"
gem "minitest"