-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
77 changed files
with
489 additions
and
496 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
brew 'rbenv' | ||
brew 'vips' | ||
brew "rbenv" | ||
brew "vips" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,58 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
ruby '3.4.1' | ||
ruby "3.4.1" | ||
|
||
gem 'rails' | ||
gem "rails" | ||
|
||
gem 'pg' | ||
gem 'puma' | ||
gem "pg" | ||
gem "puma" | ||
|
||
gem 'bootsnap', require: false | ||
gem 'thruster', require: false | ||
gem "bootsnap", require: false | ||
gem "thruster", require: false | ||
|
||
gem 'bcrypt' | ||
gem 'erroneous' | ||
gem 'foreman' | ||
gem 'hiredis' | ||
gem 'http' | ||
gem 'kaminari' | ||
gem 'progress' | ||
gem 'propshaft' | ||
gem 'redcarpet' | ||
gem 'redis' | ||
gem 'rouge' | ||
gem "bcrypt" | ||
gem "erroneous" | ||
gem "foreman" | ||
gem "hiredis" | ||
gem "http" | ||
gem "kaminari" | ||
gem "progress" | ||
gem "propshaft" | ||
gem "redcarpet" | ||
gem "redis" | ||
gem "rouge" | ||
|
||
gem 'image_processing' | ||
gem "image_processing" | ||
|
||
gem 'aws-sdk-s3', require: false | ||
gem 'cloudflare-ips' | ||
gem "aws-sdk-s3", require: false | ||
gem "cloudflare-ips" | ||
|
||
gem 'cssbundling-rails' | ||
gem 'jsbundling-rails' | ||
gem 'sentry-rails' | ||
gem 'stimulus-rails' | ||
gem "cssbundling-rails" | ||
gem "jsbundling-rails" | ||
gem "sentry-rails" | ||
gem "stimulus-rails" | ||
|
||
gem 'debug', group: %i[development test] | ||
gem "debug", group: %i[development test] | ||
|
||
group :development do | ||
gem 'brakeman' | ||
gem 'listen' | ||
gem 'rubocop' | ||
gem 'rubocop-capybara' | ||
gem 'rubocop-factory_bot' | ||
gem 'rubocop-rails' | ||
gem 'rubocop-rspec' | ||
gem 'rubocop-rspec_rails' | ||
gem 'web-console' | ||
gem "brakeman" | ||
gem "listen" | ||
gem "rubocop" | ||
gem "rubocop-basic" | ||
gem "rubocop-capybara" | ||
gem "rubocop-factory_bot" | ||
gem "rubocop-rails" | ||
gem "rubocop-rspec" | ||
gem "rubocop-rspec_rails" | ||
gem "web-console" | ||
end | ||
|
||
group :test do | ||
gem 'capybara' | ||
gem 'factory_bot_rails' | ||
gem 'rspec_junit_formatter' | ||
gem 'rspec-rails' | ||
gem 'selenium-webdriver' | ||
gem 'shoulda-matchers' | ||
gem 'simplecov', require: false | ||
gem "capybara" | ||
gem "factory_bot_rails" | ||
gem "rspec_junit_formatter" | ||
gem "rspec-rails" | ||
gem "selenium-webdriver" | ||
gem "shoulda-matchers" | ||
gem "simplecov", require: false | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Add your own tasks in files placed in lib/tasks ending in .rake, | ||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||
|
||
require_relative 'config/application' | ||
require_relative "config/application" | ||
|
||
Rails.application.load_tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
class AdminController < ApplicationController | ||
layout 'admin/application' | ||
layout "admin/application" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module Robots | ||
extend ActiveSupport::Concern | ||
|
||
def robots(value = 'all') | ||
response.headers['X-Robots-Tag'] = value | ||
def robots(value = "all") | ||
response.headers["X-Robots-Tag"] = value | ||
end | ||
|
||
def norobot | ||
robots('noindex,nofollow') | ||
robots("noindex,nofollow") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
class SitemapsController < ApplicationController | ||
layout 'sitemap' | ||
layout "sitemap" | ||
|
||
# GET /sitemap | ||
def show | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
class ApplicationMailer < ActionMailer::Base | ||
layout 'mailer' | ||
layout "mailer" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.