├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ ├── baselines.js.coffee │ │ ├── projects.js.coffee │ │ ├── scan_items.js.coffee │ │ └── spec_scans.js.coffee │ └── stylesheets │ │ ├── 1st_load_framework.css.scss │ │ ├── application.css.scss │ │ ├── baselines.css.scss │ │ ├── projects.css.scss │ │ ├── scaffolds.css.scss │ │ ├── scan_items.css.scss │ │ ├── simple-sidebar.css │ │ └── spec_scans.css.scss ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── projects_controller.rb ├── helpers │ ├── application_helper.rb │ ├── baselines_helper.rb │ ├── projects_helper.rb │ ├── scan_items_helper.rb │ └── spec_scans_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── baseline.rb │ ├── concerns │ │ └── .keep │ ├── project.rb │ ├── scan_item.rb │ └── spec_scan.rb ├── views │ ├── layouts │ │ ├── _messages.html.haml │ │ ├── _navigation.html.haml │ │ ├── _navigation_links.html.erb │ │ └── application.html.haml │ ├── projects │ │ ├── _form.html.haml │ │ ├── _project.json.jbuilder │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── index.json.jbuilder │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── show.json.jbuilder │ └── visitors │ │ └── index.html.erb └── workers │ └── scan_worker.rb ├── bin ├── bundle ├── rails ├── rake └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ └── wrap_parameters.rb ├── locales │ ├── en.yml │ └── simple_form.en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20160817065904_create_projects.rb │ ├── 20160817065946_create_baselines.rb │ ├── 20160817070004_create_spec_scans.rb │ ├── 20160817070056_create_scan_items.rb │ ├── 20160817080149_add_project_id_to_baselines.rb │ └── 20160817080154_add_project_id_to_spec_scans.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── tasks │ └── .keep └── templates │ └── haml │ └── scaffold │ └── _form.html.haml ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── humans.txt └── robots.txt ├── test ├── controllers │ ├── .keep │ ├── baselines_controller_test.rb │ ├── projects_controller_test.rb │ ├── scan_items_controller_test.rb │ └── spec_scans_controller_test.rb ├── fixtures │ ├── .keep │ ├── baselines.yml │ ├── projects.yml │ ├── scan_items.yml │ └── spec_scans.yml ├── helpers │ ├── .keep │ ├── baselines_helper_test.rb │ ├── projects_helper_test.rb │ ├── scan_items_helper_test.rb │ └── spec_scans_helper_test.rb ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── baseline_test.rb │ ├── project_test.rb │ ├── scan_item_test.rb │ └── spec_scan_test.rb └── test_helper.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/baselines.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/javascripts/baselines.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/projects.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/javascripts/projects.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/scan_items.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/javascripts/scan_items.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/spec_scans.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/javascripts/spec_scans.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/1st_load_framework.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/1st_load_framework.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/baselines.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/baselines.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/projects.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/projects.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scan_items.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/scan_items.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/simple-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/simple-sidebar.css -------------------------------------------------------------------------------- /app/assets/stylesheets/spec_scans.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/assets/stylesheets/spec_scans.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/baselines_helper.rb: -------------------------------------------------------------------------------- 1 | module BaselinesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/projects_helper.rb: -------------------------------------------------------------------------------- 1 | module ProjectsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/scan_items_helper.rb: -------------------------------------------------------------------------------- 1 | module ScanItemsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/spec_scans_helper.rb: -------------------------------------------------------------------------------- 1 | module SpecScansHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/baseline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/models/baseline.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/scan_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/models/scan_item.rb -------------------------------------------------------------------------------- /app/models/spec_scan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/models/spec_scan.rb -------------------------------------------------------------------------------- /app/views/layouts/_messages.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/layouts/_messages.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_navigation.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/layouts/_navigation.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_navigation_links.html.erb: -------------------------------------------------------------------------------- 1 | <%# add navigation links to this file %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/projects/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/_form.html.haml -------------------------------------------------------------------------------- /app/views/projects/_project.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/_project.json.jbuilder -------------------------------------------------------------------------------- /app/views/projects/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/edit.html.haml -------------------------------------------------------------------------------- /app/views/projects/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/index.html.haml -------------------------------------------------------------------------------- /app/views/projects/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/projects/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/new.html.haml -------------------------------------------------------------------------------- /app/views/projects/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/show.html.haml -------------------------------------------------------------------------------- /app/views/projects/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/projects/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/visitors/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/views/visitors/index.html.erb -------------------------------------------------------------------------------- /app/workers/scan_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/app/workers/scan_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20160817065904_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/migrate/20160817065904_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20160817065946_create_baselines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/migrate/20160817065946_create_baselines.rb -------------------------------------------------------------------------------- /db/migrate/20160817070004_create_spec_scans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/migrate/20160817070004_create_spec_scans.rb -------------------------------------------------------------------------------- /db/migrate/20160817070056_create_scan_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/migrate/20160817070056_create_scan_items.rb -------------------------------------------------------------------------------- /db/migrate/20160817080149_add_project_id_to_baselines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/migrate/20160817080149_add_project_id_to_baselines.rb -------------------------------------------------------------------------------- /db/migrate/20160817080154_add_project_id_to_spec_scans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/migrate/20160817080154_add_project_id_to_spec_scans.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/templates/haml/scaffold/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/lib/templates/haml/scaffold/_form.html.haml -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/baselines_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/controllers/baselines_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/controllers/projects_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/scan_items_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/controllers/scan_items_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/spec_scans_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/controllers/spec_scans_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/baselines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/fixtures/baselines.yml -------------------------------------------------------------------------------- /test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/fixtures/scan_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/fixtures/scan_items.yml -------------------------------------------------------------------------------- /test/fixtures/spec_scans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/fixtures/spec_scans.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/baselines_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/helpers/baselines_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/projects_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/helpers/projects_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/scan_items_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/helpers/scan_items_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/spec_scans_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/helpers/spec_scans_helper_test.rb -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/baseline_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/models/baseline_test.rb -------------------------------------------------------------------------------- /test/models/project_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/models/project_test.rb -------------------------------------------------------------------------------- /test/models/scan_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/models/scan_item_test.rb -------------------------------------------------------------------------------- /test/models/spec_scan_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/models/spec_scan_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tresacton/spectre-scan/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------