├── .all-contributorsrc ├── .browserslistrc ├── .env.sample ├── .erb-lint.yml ├── .fasterer.yml ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .ruby-version ├── .solargraph.yml ├── .tmuxinator.yml.sample ├── .tours └── change-app-name.tour ├── .versionrc ├── .yarnclean ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ └── application.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── components │ ├── alert_component.html.erb │ ├── alert_component.rb │ ├── flash_component.html.erb │ ├── flash_component.rb │ ├── prose_component.html.erb │ └── prose_component.rb ├── controllers │ ├── announcements_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── home_controller.rb │ └── users │ │ └── omniauth_callbacks_controller.rb ├── helpers │ ├── announcements_helper.rb │ └── application_helper.rb ├── javascript │ ├── channels │ │ ├── consumer.js │ │ └── index.js │ ├── controllers │ │ ├── application_controller.js │ │ ├── example_controller.js │ │ ├── index.js │ │ └── toggle_controller.js │ └── packs │ │ ├── application.js │ │ └── application.scss ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── announcement.rb │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── service.rb │ └── user.rb ├── reflexes │ ├── application_reflex.rb │ └── example_reflex.rb ├── resources │ └── .keep ├── views │ ├── announcements │ │ └── index.html.erb │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.erb │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── email_changed.html.erb │ │ │ ├── password_change.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── registrations │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions │ │ │ └── new.html.erb │ │ ├── shared │ │ │ ├── _error_messages.html.erb │ │ │ └── _links.html.erb │ │ └── unlocks │ │ │ └── new.html.erb │ ├── home │ │ └── index.html.erb │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb └── workers │ └── sentry_worker.rb ├── babel.config.js ├── bin ├── brakeman ├── bundle ├── erblint ├── fasterer ├── format ├── lint ├── rails ├── rake ├── setup ├── spring ├── standardrb ├── strong_versions ├── tmuxinator ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── friendly_id.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── model_probe.rb │ ├── sentry.rb │ ├── sidekiq.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── rails_best_practices.yml ├── routes.rb ├── sidekiq.yml ├── skylight.yml ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20200529020855_create_active_storage_tables.active_storage.rb │ ├── 20200529024541_create_friendly_id_slugs.rb │ ├── 20200529025105_devise_create_users.rb │ ├── 20200529031925_create_announcements.rb │ └── 20200529031947_create_services.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ └── auto_annotate_models.rake ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── storage └── .keep ├── tailwind.config.js ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── components │ ├── alert_component_test.rb │ ├── flash_component_test.rb │ └── prose_component_test.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp └── .keep ├── vendor └── .keep └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.env.sample -------------------------------------------------------------------------------- /.erb-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.erb-lint.yml -------------------------------------------------------------------------------- /.fasterer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.fasterer.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v13.11.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | public/ 2 | tmp/ 3 | vendor/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /.solargraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.solargraph.yml -------------------------------------------------------------------------------- /.tmuxinator.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.tmuxinator.yml.sample -------------------------------------------------------------------------------- /.tours/change-app-name.tour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.tours/change-app-name.tour -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.versionrc -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/.yarnclean -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/components/alert_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/components/alert_component.html.erb -------------------------------------------------------------------------------- /app/components/alert_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/components/alert_component.rb -------------------------------------------------------------------------------- /app/components/flash_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/components/flash_component.html.erb -------------------------------------------------------------------------------- /app/components/flash_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/components/flash_component.rb -------------------------------------------------------------------------------- /app/components/prose_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/components/prose_component.html.erb -------------------------------------------------------------------------------- /app/components/prose_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/components/prose_component.rb -------------------------------------------------------------------------------- /app/controllers/announcements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/controllers/announcements_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/controllers/users/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/helpers/announcements_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/helpers/announcements_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/channels/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/application_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/controllers/application_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/example_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/controllers/example_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/toggle_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/controllers/toggle_controller.js -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/javascript/packs/application.scss -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/models/announcement.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/models/service.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/reflexes/application_reflex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/reflexes/application_reflex.rb -------------------------------------------------------------------------------- /app/reflexes/example_reflex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/reflexes/example_reflex.rb -------------------------------------------------------------------------------- /app/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/announcements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/announcements/index.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/email_changed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/mailer/email_changed.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/workers/sentry_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/app/workers/sentry_worker.rb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/erblint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/erblint -------------------------------------------------------------------------------- /bin/fasterer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/fasterer -------------------------------------------------------------------------------- /bin/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/format -------------------------------------------------------------------------------- /bin/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/lint -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/standardrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/standardrb -------------------------------------------------------------------------------- /bin/strong_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/strong_versions -------------------------------------------------------------------------------- /bin/tmuxinator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/tmuxinator -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/model_probe.rb: -------------------------------------------------------------------------------- 1 | ApplicationRecord.extend ModelProbe if Rails.env.development? 2 | -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/rails_best_practices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/rails_best_practices.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/skylight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/skylight.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20200529020855_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/db/migrate/20200529020855_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20200529024541_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/db/migrate/20200529024541_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20200529025105_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/db/migrate/20200529025105_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20200529031925_create_announcements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/db/migrate/20200529031925_create_announcements.rb -------------------------------------------------------------------------------- /db/migrate/20200529031947_create_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/db/migrate/20200529031947_create_services.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/components/alert_component_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/test/components/alert_component_test.rb -------------------------------------------------------------------------------- /test/components/flash_component_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/test/components/flash_component_test.rb -------------------------------------------------------------------------------- /test/components/prose_component_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/test/components/prose_component_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcodes/shotgun/HEAD/yarn.lock --------------------------------------------------------------------------------