-
Notifications
You must be signed in to change notification settings - Fork 3
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
12 changed files
with
488 additions
and
335 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ require: | |
- rubocop-rake | ||
- rubocop-rspec | ||
|
||
Style/IfUnlessModifier: | ||
Enabled: false |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
# | ||
# This file was generated by Bundler. | ||
# | ||
# The application 'rubocop' is installed as part of a gem, and | ||
# this file is here to facilitate running it. | ||
# | ||
|
||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) | ||
|
||
bundle_binstub = File.expand_path("bundle", __dir__) | ||
|
||
if File.file?(bundle_binstub) | ||
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler") | ||
load(bundle_binstub) | ||
else | ||
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run. | ||
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.") | ||
end | ||
end | ||
|
||
require "rubygems" | ||
require "bundler/setup" | ||
|
||
load Gem.bin_path("rubocop", "rubocop") |
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
28 changes: 28 additions & 0 deletions
28
db/migrate/20240311182346_remove_unused_indexes_from_event_admin.rb
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# frozen_string_literal: true | ||
|
||
class RemoveUnusedIndexesFromEventAdmin < ActiveRecord::Migration[6.0] | ||
def up | ||
if index_exists?(:event_admins, :user_id, | ||
name: 'index_event_admins_on_user_id_only') | ||
remove_index :event_admins, column: [:user_id], name: 'index_event_admins_on_user_id_only' | ||
end | ||
|
||
if index_exists?(:event_admins, :event_id, name: 'index_event_admins_on_event_id') | ||
remove_index :event_admins, column: [:event_id], name: 'index_event_admins_on_event_id' | ||
end | ||
|
||
execute 'analyze event_admins' | ||
end | ||
|
||
def down | ||
unless index_exists?(:event_admins, :user_id, name: 'index_event_admins_on_user_id_only') | ||
add_index(:event_admins, [:user_id], name: 'index_event_admins_on_user_id_only') | ||
end | ||
|
||
unless index_exists?(:event_admins, :event_id, name: 'index_event_admins_on_event_id') | ||
add_index(:event_admins, [:event_id], name: 'index_event_admins_on_event_id') | ||
end | ||
|
||
execute 'analyze event_admins' | ||
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
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,59 +1,64 @@ | ||
# frozen_string_literal: true | ||
|
||
# NOTE: only doing this in development as some production environments (Heroku) | ||
# NOTE: are sensitive to local FS writes, and besides -- it's just not proper | ||
# NOTE: to have a dev-mode tool do its thing in production. | ||
if Rails.env.development? | ||
require 'annotate' | ||
task :set_annotation_options do | ||
|
||
# rubocop: disable Rake/Desc | ||
task set_annotation_options: :environment do | ||
# You can override any of these by setting an environment variable of the | ||
# same name. | ||
Annotate.set_defaults( | ||
'active_admin' => 'false', | ||
'additional_file_patterns' => [], | ||
'routes' => 'false', | ||
'models' => 'true', | ||
'position_in_routes' => 'before', | ||
'position_in_class' => 'before', | ||
'position_in_test' => 'before', | ||
'position_in_fixture' => 'before', | ||
'position_in_factory' => 'before', | ||
'position_in_serializer' => 'before', | ||
'show_foreign_keys' => 'true', | ||
'show_complete_foreign_keys' => 'false', | ||
'show_indexes' => 'true', | ||
'simple_indexes' => 'false', | ||
'model_dir' => 'app/models', | ||
'root_dir' => '', | ||
'include_version' => 'false', | ||
'require' => '', | ||
'exclude_tests' => 'false', | ||
'exclude_fixtures' => 'false', | ||
'exclude_factories' => 'false', | ||
'exclude_serializers' => 'false', | ||
'exclude_scaffolds' => 'true', | ||
'exclude_controllers' => 'true', | ||
'exclude_helpers' => 'true', | ||
'exclude_sti_subclasses' => 'false', | ||
'ignore_model_sub_dir' => 'false', | ||
'ignore_columns' => nil, | ||
'ignore_routes' => nil, | ||
'ignore_unknown_models' => 'false', | ||
'hide_limit_column_types' => 'integer,bigint,boolean', | ||
'hide_default_column_types' => 'json,jsonb,hstore', | ||
'skip_on_db_migrate' => 'false', | ||
'format_bare' => 'true', | ||
'format_rdoc' => 'false', | ||
'format_yard' => 'false', | ||
'format_markdown' => 'false', | ||
'sort' => 'false', | ||
'force' => 'false', | ||
'frozen' => 'false', | ||
'classified_sort' => 'true', | ||
'trace' => 'false', | ||
'wrapper_open' => nil, | ||
'wrapper_close' => nil, | ||
'with_comment' => 'true' | ||
'active_admin' => 'false', | ||
'additional_file_patterns' => [], | ||
'routes' => 'false', | ||
'models' => 'true', | ||
'position_in_routes' => 'before', | ||
'position_in_class' => 'before', | ||
'position_in_test' => 'before', | ||
'position_in_fixture' => 'before', | ||
'position_in_factory' => 'before', | ||
'position_in_serializer' => 'before', | ||
'show_foreign_keys' => 'true', | ||
'show_complete_foreign_keys' => 'false', | ||
'show_indexes' => 'true', | ||
'simple_indexes' => 'false', | ||
'model_dir' => 'app/models', | ||
'root_dir' => '', | ||
'include_version' => 'false', | ||
'require' => '', | ||
'exclude_tests' => 'false', | ||
'exclude_fixtures' => 'false', | ||
'exclude_factories' => 'false', | ||
'exclude_serializers' => 'false', | ||
'exclude_scaffolds' => 'true', | ||
'exclude_controllers' => 'true', | ||
'exclude_helpers' => 'true', | ||
'exclude_sti_subclasses' => 'false', | ||
'ignore_model_sub_dir' => 'false', | ||
'ignore_columns' => nil, | ||
'ignore_routes' => nil, | ||
'ignore_unknown_models' => 'false', | ||
'hide_limit_column_types' => 'integer,bigint,boolean', | ||
'hide_default_column_types' => 'json,jsonb,hstore', | ||
'skip_on_db_migrate' => 'false', | ||
'format_bare' => 'true', | ||
'format_rdoc' => 'false', | ||
'format_yard' => 'false', | ||
'format_markdown' => 'false', | ||
'sort' => 'false', | ||
'force' => 'false', | ||
'frozen' => 'false', | ||
'classified_sort' => 'true', | ||
'trace' => 'false', | ||
'wrapper_open' => nil, | ||
'wrapper_close' => nil, | ||
'with_comment' => 'true' | ||
) | ||
end | ||
# rubocop: enable Rake/Desc | ||
|
||
Annotate.load_tasks | ||
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