From 0fbc635349bb2e324726a8b377f3db6719bd4fa2 Mon Sep 17 00:00:00 2001 From: Rick Carlino Date: Wed, 9 Nov 2016 17:23:55 -0600 Subject: [PATCH] More cleanup --- Gemfile | 54 +++++++++++++++++++-------------------------- Gemfile.lock | 12 +++------- spec/spec_helper.rb | 2 -- 3 files changed, 26 insertions(+), 42 deletions(-) diff --git a/Gemfile b/Gemfile index 5580c1b0c..89d2d066d 100755 --- a/Gemfile +++ b/Gemfile @@ -1,42 +1,34 @@ -source 'https://rubygems.org' -ruby '2.3.1' +source "https://rubygems.org" +ruby "2.3.1" -gem 'rails', '4.2.7' -#Dokku demands this one. -gem 'rails_12factor' - -#Asset stuff -gem 'devise', github: 'plataformatec/devise' -gem 'jwt' -gem 'mutations' -gem 'active_model_serializers', '~> 0.8.3' -gem 'ice_cube' -gem 'rack-cors', require: 'rack/cors' -gem 'mysql' -gem 'database_cleaner' - -source 'https://rails-assets.org' do - gem 'rails-assets-lodash' - gem 'rails-assets-jquery' -end +gem "rails", "4.2.7" +gem "rails_12factor" +gem "devise", github: "plataformatec/devise" +gem "jwt" +gem "mutations" +gem "active_model_serializers", "~> 0.8.3" +gem "ice_cube" +gem "rack-cors", require: "rack/cors" +gem "mysql" +gem "database_cleaner" group :development, :test do + gem "sqlite3" gem "bullet" - gem 'metric_fu' # Run this to see where the code smells. metric_fu in terminal - gem 'pry' - gem 'factory_girl_rails' - gem 'faker' - gem 'smarf_doc', github: 'RickCarlino/smarf_doc' - gem 'rails-erd' + gem "metric_fu" # Run this to see where the code smells. metric_fu in terminal + gem "pry" + gem "factory_girl_rails" + gem "faker" + gem "smarf_doc", github: "RickCarlino/smarf_doc" + gem "rails-erd" end group :production do - gem 'pg' + gem "pg" end group :test do - gem 'rspec' - gem 'rspec-rails' - gem 'simplecov' - gem 'codeclimate-test-reporter', require: nil + gem "rspec" + gem "rspec-rails" + gem "simplecov" end diff --git a/Gemfile.lock b/Gemfile.lock index 68efa4df4..f41b57e3d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -17,7 +17,6 @@ GIT GEM remote: https://rubygems.org/ - remote: https://rails-assets.org/ specs: abstract_type (0.0.7) actionmailer (4.2.7) @@ -84,8 +83,6 @@ GEM code_analyzer (0.4.7) sexp_processor code_metrics (0.1.3) - codeclimate-test-reporter (0.6.0) - simplecov (>= 0.7.1, < 1.0.0) coderay (1.1.1) concord (0.1.5) adamantium (~> 0.2.0) @@ -196,8 +193,6 @@ GEM bundler (>= 1.3.0, < 2.0) railties (= 4.2.7) sprockets-rails - rails-assets-jquery (3.1.1) - rails-assets-lodash (4.16.2) rails-deprecated_sanitizer (1.0.3) activesupport (>= 4.2.0.alpha) rails-dom-testing (1.0.7) @@ -284,6 +279,7 @@ GEM actionpack (>= 4.0) activesupport (>= 4.0) sprockets (>= 3.0.0) + sqlite3 (1.3.10) thor (0.19.1) thread_safe (0.3.5) tzinfo (1.2.2) @@ -309,7 +305,6 @@ PLATFORMS DEPENDENCIES active_model_serializers (~> 0.8.3) bullet - codeclimate-test-reporter database_cleaner devise! factory_girl_rails @@ -323,17 +318,16 @@ DEPENDENCIES pry rack-cors rails (= 4.2.7) - rails-assets-jquery! - rails-assets-lodash! rails-erd rails_12factor rspec rspec-rails simplecov smarf_doc! + sqlite3 RUBY VERSION ruby 2.3.1p112 BUNDLED WITH - 1.13.0 + 1.13.6 diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 6a1324524..69d7395cb 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,8 +1,6 @@ -require 'codeclimate-test-reporter' ENV['MQTT_HOST'] = "blooper.io" ENV['OS_UPDATE_SERVER'] = "http://blah.com" ENV['FW_UPDATE_SERVER'] = "http://test.com" -CodeClimate::TestReporter.start require 'simplecov' #Ignore anything with the word 'spec' in it. No need to test your tests. SimpleCov.start do