From 5f9d7b43028a82496a8780cbb5cd6be5c50b7599 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Tue, 10 Nov 2015 19:12:52 -0500 Subject: [PATCH 01/25] Delete .codeclimate.yml --- .codeclimate.yml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml deleted file mode 100644 index 31a56f4..0000000 --- a/.codeclimate.yml +++ /dev/null @@ -1,8 +0,0 @@ -languages: - Ruby: true - JavaScript: true - Python: true - PHP: false -exclude_paths: -- "test/*" -- "app/assets/javascripts/*js" From bb280036adb3a63db1c481eff0585e0c0a41fcda Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Tue, 10 Nov 2015 19:15:56 -0500 Subject: [PATCH 02/25] Create .codeclimate.yml --- .codeclimate.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..e569dd0 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,22 @@ +engines: + bundler-audit: + enabled: true + csslint: + enabled: true + eslint: + enabled: true + fixme: + enabled: true + phpcodesniffer: + enabled: true + phpmd: + enabled: true + rubocop: + enabled: true +ratings: + paths: + - Gemfile.lock + +exclude_paths: +- test/* +- app/assets/javascripts/*js From 7e46df81ca91cad672c67f8d530c2da2bc9e0dfd Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Tue, 10 Nov 2015 19:17:50 -0500 Subject: [PATCH 03/25] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index e569dd0..e1aeab5 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -18,5 +18,5 @@ ratings: - Gemfile.lock exclude_paths: -- test/* -- app/assets/javascripts/*js +- "test/**/*" +- "app/assets/javascripts/**/*" From 24aafdcb351ca004a58257c6e623b12c4a06936c Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Tue, 10 Nov 2015 19:18:54 -0500 Subject: [PATCH 04/25] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index e1aeab5..8550268 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -19,4 +19,4 @@ ratings: exclude_paths: - "test/**/*" -- "app/assets/javascripts/**/*" +- "app/**/*" From 20343c4bf1446a1a3124c8dac198c54288ecdb74 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Thu, 12 Nov 2015 13:37:35 -0500 Subject: [PATCH 05/25] Create development.rb --- config/environments/ development.rb | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 config/environments/ development.rb diff --git a/config/environments/ development.rb b/config/environments/ development.rb new file mode 100644 index 0000000..794f8f8 --- /dev/null +++ b/config/environments/ development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + + # Settings specified here will take precedence over those in config/application.rb. + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end From dc9360904108ff7389fd166496d9db918b6ecabf Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Thu, 12 Nov 2015 13:38:13 -0500 Subject: [PATCH 06/25] Create assets.rb --- initializers/ assets.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 initializers/ assets.rb diff --git a/initializers/ assets.rb b/initializers/ assets.rb new file mode 100644 index 0000000..889a32e --- /dev/null +++ b/initializers/ assets.rb @@ -0,0 +1,12 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. + +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) From 6fb3948d634709080846c1103dfb4f31ed0697b8 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Thu, 12 Nov 2015 13:38:48 -0500 Subject: [PATCH 07/25] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 8550268..ada5d1d 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -18,5 +18,5 @@ ratings: - Gemfile.lock exclude_paths: -- "test/**/*" -- "app/**/*" +- test/**/* +- app/**/* From 52d41a9b828e86a91f984021ccd9bee187134b5b Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Thu, 12 Nov 2015 13:40:39 -0500 Subject: [PATCH 08/25] Update .codeclimate.yml --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index ada5d1d..eff4ae9 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -20,3 +20,4 @@ ratings: exclude_paths: - test/**/* - app/**/* +- config/**/* From 2a295adef0e77918feca0e694cb247a3690fd5fb Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Fri, 4 Dec 2015 15:40:24 -0500 Subject: [PATCH 09/25] Create rubocop.yml --- rubocop.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 rubocop.yml diff --git a/rubocop.yml b/rubocop.yml new file mode 100644 index 0000000..4c7c83b --- /dev/null +++ b/rubocop.yml @@ -0,0 +1,6 @@ +AllCops: +Exclude: +- 'bin/*' +- 'Rakefile' +Lint/EndAlignment: +Enabled: false From 00c7f49f7f611e1084701fd3023f96830155608e Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Fri, 4 Dec 2015 15:42:33 -0500 Subject: [PATCH 10/25] Update rubocop.yml --- rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/rubocop.yml b/rubocop.yml index 4c7c83b..a9b5e2d 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -1,6 +1,7 @@ AllCops: Exclude: - 'bin/*' +- 'config/*' - 'Rakefile' Lint/EndAlignment: Enabled: false From 31932d769f36db4a43bafc4e5cd3903c03ae219d Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Mon, 7 Dec 2015 10:51:43 -0500 Subject: [PATCH 11/25] Update .codeclimate.yml --- .codeclimate.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index eff4ae9..9d70dd7 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,18 +1,18 @@ engines: bundler-audit: - enabled: true + enabled: false csslint: - enabled: true + enabled: false eslint: - enabled: true + enabled: false fixme: - enabled: true + enabled: false phpcodesniffer: - enabled: true + enabled: false phpmd: - enabled: true + enabled: false rubocop: - enabled: true + enabled: false ratings: paths: - Gemfile.lock From fa6a947cedb77421ffcd402df3f0c1a21bd73878 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Fri, 18 Dec 2015 11:30:53 -0500 Subject: [PATCH 12/25] Update .codeclimate.yml --- .codeclimate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 9d70dd7..ba63289 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -21,3 +21,5 @@ exclude_paths: - test/**/* - app/**/* - config/**/* + +#testing From 8b87d644eac31c2976ab0396c5d16838cfe5216a Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:22:03 -0500 Subject: [PATCH 13/25] Create .spec.js --- app/.spec.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/.spec.js diff --git a/app/.spec.js b/app/.spec.js new file mode 100644 index 0000000..f1e90cb --- /dev/null +++ b/app/.spec.js @@ -0,0 +1,20 @@ +describe('angularjs homepage', function() { + it('should greet the named user', function() { + // Load the AngularJS homepage. + browser.get('http://www.angularjs.org'); + + // Find the element with ng-model matching 'yourName' - this will + // find the element - and then + // type 'Julie' into it. + element(by.model('yourName')).sendKeys('Julie'); + + // Find the element with binding matching 'yourName' - this will + // find the

Hello {{yourName}}!

element. + var greeting = element(by.binding('yourName')); + + // Assert that the text element has the expected value. + // Protractor patches 'expect' to understand promises. + + expect(greeting.getText()).toEqual('Hello Julie!'); + }); +}); From 6c7d96ce3fc8643daea94c0edd2966849d5a115e Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:22:21 -0500 Subject: [PATCH 14/25] Create .spec.js --- app/assets/.spec.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/assets/.spec.js diff --git a/app/assets/.spec.js b/app/assets/.spec.js new file mode 100644 index 0000000..f1e90cb --- /dev/null +++ b/app/assets/.spec.js @@ -0,0 +1,20 @@ +describe('angularjs homepage', function() { + it('should greet the named user', function() { + // Load the AngularJS homepage. + browser.get('http://www.angularjs.org'); + + // Find the element with ng-model matching 'yourName' - this will + // find the element - and then + // type 'Julie' into it. + element(by.model('yourName')).sendKeys('Julie'); + + // Find the element with binding matching 'yourName' - this will + // find the

Hello {{yourName}}!

element. + var greeting = element(by.binding('yourName')); + + // Assert that the text element has the expected value. + // Protractor patches 'expect' to understand promises. + + expect(greeting.getText()).toEqual('Hello Julie!'); + }); +}); From 4d15b4d4d3d7eb34ff52973ace6a9b0fcb9ca9a8 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:23:16 -0500 Subject: [PATCH 15/25] Update .codeclimate.yml --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index ba63289..e03e94f 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -21,5 +21,6 @@ exclude_paths: - test/**/* - app/**/* - config/**/* +- app/**/*.spec.js #testing From 9804e73755c55e57f72c5ff5286bdaeed0543485 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:24:34 -0500 Subject: [PATCH 16/25] Update .codeclimate.yml --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index e03e94f..ea58069 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -22,5 +22,6 @@ exclude_paths: - app/**/* - config/**/* - app/**/*.spec.js +- app/spec.js #testing From dbdf77cda8041c6cf709f304e96bd3677a1fbb59 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:25:20 -0500 Subject: [PATCH 17/25] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index ea58069..8d4c7c2 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -21,7 +21,7 @@ exclude_paths: - test/**/* - app/**/* - config/**/* -- app/**/*.spec.js -- app/spec.js +- **/*.spec.js +- */.spec.js #testing From 50ad0d0885dedee0570b98eeb7e8b400e265c088 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:26:25 -0500 Subject: [PATCH 18/25] Update .codeclimate.yml --- .codeclimate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 8d4c7c2..6ddc318 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -22,6 +22,6 @@ exclude_paths: - app/**/* - config/**/* - **/*.spec.js -- */.spec.js +- *.spec.js #testing From 2dfa148588475eff8881da6eeab66f66acd1be02 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:27:55 -0500 Subject: [PATCH 19/25] Update .codeclimate.yml --- .codeclimate.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 6ddc318..3e717c7 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -21,7 +21,6 @@ exclude_paths: - test/**/* - app/**/* - config/**/* -- **/*.spec.js - *.spec.js #testing From 79c1c6f8d15a4bc2ff152babad0343d25ae899a1 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:30:18 -0500 Subject: [PATCH 20/25] Update .codeclimate.yml --- .codeclimate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 3e717c7..13fb03c 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -4,7 +4,7 @@ engines: csslint: enabled: false eslint: - enabled: false + enabled: true fixme: enabled: false phpcodesniffer: @@ -21,6 +21,6 @@ exclude_paths: - test/**/* - app/**/* - config/**/* -- *.spec.js +- ".spec.js" #testing From 082c13595f3167b8d7f4a9eafc437bf97cfb59a6 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 6 Jan 2016 15:31:37 -0500 Subject: [PATCH 21/25] Update .codeclimate.yml --- .codeclimate.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 13fb03c..7afdf85 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -21,6 +21,7 @@ exclude_paths: - test/**/* - app/**/* - config/**/* -- ".spec.js" +- "app/**/*.spec.js" +- "app/.spec.js" #testing From 6406bb2d9362d2b292de3b5050ab6759e27002ac Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 27 Jan 2016 13:00:44 -0500 Subject: [PATCH 22/25] Delete .codeclimate.yml --- .codeclimate.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml deleted file mode 100644 index 7afdf85..0000000 --- a/.codeclimate.yml +++ /dev/null @@ -1,27 +0,0 @@ -engines: - bundler-audit: - enabled: false - csslint: - enabled: false - eslint: - enabled: true - fixme: - enabled: false - phpcodesniffer: - enabled: false - phpmd: - enabled: false - rubocop: - enabled: false -ratings: - paths: - - Gemfile.lock - -exclude_paths: -- test/**/* -- app/**/* -- config/**/* -- "app/**/*.spec.js" -- "app/.spec.js" - -#testing From 9a331e313cb47673885dce750cc755a91e02f2cd Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Fri, 29 Jan 2016 14:12:33 -0500 Subject: [PATCH 23/25] Update .travis.yml --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 23a0abe..f63dab6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ language: ruby rvm: - 2.2.2 + +#test commit From aa0c4724e0afde9b6348f8cc53142c33512965f7 Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Mon, 1 Feb 2016 13:58:30 -0500 Subject: [PATCH 24/25] Create .codeclimate.yml --- .codeclimate.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..7a26b97 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,4 @@ +engines: + rubocop: + enabled: true + From 3014eab707ad6972f6bff97a1d12feedb7c814bf Mon Sep 17 00:00:00 2001 From: Jenna Smith Date: Wed, 10 Feb 2016 11:55:05 -0500 Subject: [PATCH 25/25] Update .codeclimate.yml --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 7a26b97..310cd0f 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -2,3 +2,4 @@ engines: rubocop: enabled: true +#test commit