├── .claude └── skills │ ├── compare-erb-js │ └── skill.md │ ├── database │ └── SKILL.md │ ├── deployment │ └── SKILL.md │ ├── fly-ssh │ └── SKILL.md │ ├── navigator │ └── SKILL.md │ ├── render-page │ ├── SKILL.md │ └── scripts │ │ └── render.rb │ └── testing │ └── SKILL.md ├── .dockerignore ├── .eslintrc.yml ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── .kamal └── hooks │ ├── docker-setup.sample │ ├── post-deploy.sample │ ├── post-proxy-reboot.sample │ ├── pre-build.sample │ ├── pre-connect.sample │ ├── pre-deploy.sample │ └── pre-proxy-reboot.sample ├── ARCHITECTURE.md ├── CLAUDE.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile.dev ├── Procfile.fly ├── README.md ├── Rakefile ├── adminui-cover.webp ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── images │ │ ├── .keep │ │ ├── Padlock-bronze-closed.svg │ │ ├── Padlock-bronze-open.svg │ │ └── arthur-murray-dance-studio.png │ ├── stylesheets │ │ ├── actiontext.css │ │ ├── application.css │ │ ├── dictaphone.css │ │ ├── docs.css │ │ └── xterm.css │ └── tailwind │ │ └── application.css ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ ├── command_output_channel.rb │ ├── config_update_channel.rb │ └── scores_channel.rb ├── controllers │ ├── admin_controller.rb │ ├── answers_controller.rb │ ├── application_controller.rb │ ├── billables_controller.rb │ ├── categories_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── configurator.rb │ │ ├── dbQuery.rb │ │ ├── entry_form.rb │ │ ├── heat_scheduler.rb │ │ ├── multi_level_splitter.rb │ │ ├── printable.rb │ │ ├── retriable.rb │ │ ├── showcase_inventory.rb │ │ └── table_assigner.rb │ ├── dances_controller.rb │ ├── docs_controller.rb │ ├── entries_controller.rb │ ├── event_controller.rb │ ├── feedbacks_controller.rb │ ├── formations_controller.rb │ ├── heats_controller.rb │ ├── locations_controller.rb │ ├── multis_controller.rb │ ├── payments_controller.rb │ ├── people_controller.rb │ ├── recordings_controller.rb │ ├── scores_controller.rb │ ├── showcases_controller.rb │ ├── solos_controller.rb │ ├── songs_controller.rb │ ├── studios_controller.rb │ ├── tables_controller.rb │ ├── templates_controller.rb │ └── users_controller.rb ├── helpers │ ├── admin_helper.rb │ ├── application_helper.rb │ ├── billables_helper.rb │ ├── categories_helper.rb │ ├── dance_limits_helper.rb │ ├── dances_helper.rb │ ├── docs_helper.rb │ ├── entries_helper.rb │ ├── event_helper.rb │ ├── feedbacks_helper.rb │ ├── formations_helper.rb │ ├── heats_helper.rb │ ├── locations_helper.rb │ ├── multis_helper.rb │ ├── payments_helper.rb │ ├── people_helper.rb │ ├── recordings_helper.rb │ ├── scores_helper.rb │ ├── showcases_helper.rb │ ├── solos_helper.rb │ ├── songs_helper.rb │ ├── studios_helper.rb │ ├── tables_helper.rb │ └── users_helper.rb ├── javascript │ ├── application.js │ ├── channels │ │ ├── consumer.js │ │ ├── current_heat_channel.js │ │ ├── index.js │ │ └── scores_channel.js │ ├── controllers │ │ ├── affinity_controller.js │ │ ├── agenda_select_controller.js │ │ ├── anchored_controller.js │ │ ├── application.js │ │ ├── assign_judges_controller.js │ │ ├── auto_submit_controller.js │ │ ├── autoform_controller.js │ │ ├── category_override_controller.js │ │ ├── certificate_preview_controller.js │ │ ├── check_number_controller.js │ │ ├── config_update_controller.js │ │ ├── connection_status_controller.js │ │ ├── copy_entries_controller.js │ │ ├── couples_controller.js │ │ ├── date_range_controller.js │ │ ├── drop_controller.js │ │ ├── dropdown_controller.js │ │ ├── entry_box_controller.js │ │ ├── event_navigation_controller.js │ │ ├── form_builder_controller.js │ │ ├── formation_controller.js │ │ ├── geocode_controller.js │ │ ├── heat_app_controller.js │ │ ├── heat_order_controller.js │ │ ├── heat_search_controller.js │ │ ├── index.js │ │ ├── info_box_controller.js │ │ ├── live_scores_controller.js │ │ ├── logout_controller.js │ │ ├── mapper_controller.js │ │ ├── multi_heat_controller.js │ │ ├── name_to_token_controller.js │ │ ├── offline_playlist_controller.js │ │ ├── open_feedback_controller.js │ │ ├── people_search_controller.js │ │ ├── person_controller.js │ │ ├── person_questions_controller.js │ │ ├── post_console_log_controller.js │ │ ├── progressive_audio_controller.js │ │ ├── questions_controller.js │ │ ├── recordings_controller.js │ │ ├── region_controller.js │ │ ├── score_controller.js │ │ ├── select_person_controller.js │ │ ├── sentry_controller.js │ │ ├── studio_price_override_controller.js │ │ ├── submit_controller.js │ │ ├── table_search_controller.js │ │ └── turbo_streams_controller.js │ ├── helpers │ │ ├── connectivity_tracker.js │ │ ├── dirty_scores_queue.js │ │ ├── heat_data_manager.js │ │ ├── heat_navigator.js │ │ ├── inject_region.js │ │ ├── score_data_helper.js │ │ └── score_merge_helper.js │ └── lib │ │ ├── dirty_scores_queue.js │ │ ├── heat_hydrator.js │ │ └── subject_sorter.js ├── jobs │ ├── application_job.rb │ ├── command_execution_job.rb │ ├── config_update_job.rb │ ├── offline_playlist_job.rb │ └── send_invoice_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── age.rb │ ├── age_cost.rb │ ├── answer.rb │ ├── application_record.rb │ ├── billable.rb │ ├── cat_extension.rb │ ├── category.rb │ ├── concerns │ │ ├── .keep │ │ ├── compmngr.rb │ │ └── dance_limit_calculator.rb │ ├── dance.rb │ ├── entry.rb │ ├── event.rb │ ├── feedback.rb │ ├── formation.rb │ ├── heat.rb │ ├── judge.rb │ ├── level.rb │ ├── locale.rb │ ├── location.rb │ ├── multi.rb │ ├── multi_level.rb │ ├── package_include.rb │ ├── payment.rb │ ├── person.rb │ ├── person_option.rb │ ├── question.rb │ ├── recording.rb │ ├── region.rb │ ├── score.rb │ ├── showcase.rb │ ├── solo.rb │ ├── song.rb │ ├── studio.rb │ ├── studio_pair.rb │ ├── table.rb │ └── user.rb └── views │ ├── active_storage │ └── blobs │ │ └── _blob.html.erb │ ├── admin │ ├── _inventory_nav.html.erb │ ├── apply.html.erb │ ├── index.html.erb │ ├── inventory.html.erb │ ├── inventory_functions.html.erb │ ├── inventory_heats.html.erb │ ├── inventory_judging.html.erb │ ├── inventory_options.html.erb │ ├── inventory_tables.html.erb │ ├── new_region.html.erb │ ├── region.html.erb │ └── regions.html.erb │ ├── answers │ ├── index.html.erb │ └── report.html.erb │ ├── billables │ ├── _billable.html.erb │ ├── _billable.json.jbuilder │ ├── _form.html.erb │ ├── _group.html.erb │ ├── _index.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── people.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── categories │ ├── _category.html.erb │ ├── _category.json.jbuilder │ ├── _dances.html.erb │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── dances │ ├── _categories.html.erb │ ├── _dance.html.erb │ ├── _dance.json.jbuilder │ ├── _form.html.erb │ ├── edit.html.erb │ ├── form.html.erb │ ├── heats.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── trophies.html.erb │ ├── docs │ ├── Getting-Started.md │ ├── Glossary.md │ ├── Troubleshooting.md │ ├── experimental │ │ ├── Availability.md │ │ ├── Compmngr.md │ │ ├── Feedback.md │ │ ├── I18n.md │ │ ├── Offline-DJ-List.md │ │ ├── Offline-Scoring.md │ │ ├── Partnerless-Entries.md │ │ ├── Questions.md │ │ ├── Scrutineering.md │ │ ├── Student-Judge-Assignments.md │ │ ├── Tables.md │ │ ├── Voice.md │ │ └── skating_system_algorithm.md │ ├── index.md │ ├── ops │ │ ├── Backups.md │ │ ├── Cost.md │ │ ├── Devices.md │ │ ├── Hosting.md │ │ ├── Logging.md │ │ └── Passwords.md │ ├── roles │ │ ├── DJ.md │ │ ├── Emcee.md │ │ ├── Event-Organizer.md │ │ ├── Judge.md │ │ └── Visiting-Studio.md │ └── tasks │ │ ├── Agenda.md │ │ ├── Back-Numbers.md │ │ ├── Ballrooms.md │ │ ├── Counter.md │ │ ├── Entries.md │ │ ├── Invoicing.md │ │ ├── Mobile.md │ │ ├── Multi-Dance.md │ │ ├── Publishing.md │ │ ├── Reordering.md │ │ ├── Scheduling.md │ │ ├── Scoring.md │ │ ├── Scratches-and-Walk-ons.md │ │ ├── Settings.md │ │ └── Solos.md │ ├── entries │ ├── _box.html.erb │ ├── _dances.html.erb │ ├── _entry.html.erb │ ├── _entry.json.jbuilder │ ├── _form.html.erb │ ├── couples.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── event │ ├── _aumap.html.erb │ ├── _clone.html.erb │ ├── _eumap.html.erb │ ├── _heat.html.erb │ ├── _jpmap.html.erb │ ├── _map.html.erb │ ├── _usmap.html.erb │ ├── ages.html.erb │ ├── auth.html.erb │ ├── clone.html.erb │ ├── console.html.erb │ ├── counter.html.erb │ ├── dances.html.erb │ ├── env.html.erb │ ├── import.html.erb │ ├── instructions.html.erb │ ├── judge.json.erb │ ├── judge.xlsx.erb │ ├── landing.html.erb │ ├── levels.html.erb │ ├── publish.html.erb │ ├── qrcode.html.erb │ ├── region.html.erb │ ├── regions.html.erb │ ├── root.html.erb │ ├── select.html.erb │ ├── settings │ │ ├── advanced.html.erb │ │ ├── clone.html.erb │ │ ├── description.html.erb │ │ ├── heats.html.erb │ │ ├── judging.html.erb │ │ ├── options.html.erb │ │ ├── prices.html.erb │ │ └── staff.html.erb │ ├── showcases.html.erb │ ├── songs.html.erb │ ├── spreadsheet.json.erb │ ├── spreadsheet.xlsx.erb │ ├── summary.html.erb │ ├── upload.html.erb │ └── web_console.html.erb │ ├── feedbacks │ ├── _buttons.html.erb │ ├── _feedback.html.erb │ ├── _feedback.json.jbuilder │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── formations │ ├── _form.html.erb │ ├── _formation.html.erb │ ├── _formation.json.jbuilder │ ├── _info_box.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── heats │ ├── _category.html.erb │ ├── _form.html.erb │ ├── _heat.html.erb │ ├── _heat.json.jbuilder │ ├── _renumber.html.erb │ ├── _solo.html.erb │ ├── book.html.erb │ ├── djlist.html.erb │ ├── edit.html.erb │ ├── index.csv.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── index.xlsx.erb │ ├── limits.html.erb │ ├── mobile.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── layouts │ ├── action_text │ │ └── contents │ │ │ └── _content.html.erb │ ├── application.html.erb │ ├── docs.html.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ └── settings.html.erb │ ├── locations │ ├── _auth_progress.html.erb │ ├── _form.html.erb │ ├── _location.html.erb │ ├── _location.json.jbuilder │ ├── _showcases.html.erb │ ├── auth.html.erb │ ├── edit.html.erb │ ├── events.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── sisters.html.erb │ ├── multis │ ├── _form.html.erb │ ├── _multi.html.erb │ ├── _multi.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── payments │ ├── _form.html.erb │ ├── _payment.html.erb │ ├── _payment.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── people │ ├── _action_buttons.html.erb │ ├── _bottom_navigation.html.erb │ ├── _category_score.html.erb │ ├── _dances_table.html.erb │ ├── _emcee_dj_section.html.erb │ ├── _entries_table.html.erb │ ├── _experimental_spa_section.html.erb │ ├── _form.html.erb │ ├── _heats.html.erb │ ├── _heats_table.html.erb │ ├── _info_box.html.erb │ ├── _judge_section.html.erb │ ├── _options.html.erb │ ├── _package.html.erb │ ├── _person.html.erb │ ├── _person.json.jbuilder │ ├── _questions.html.erb │ ├── _questions_content.html.erb │ ├── _scores.html.erb │ ├── _scores_landscape.html.erb │ ├── _scores_table.html.erb │ ├── _solos_table.html.erb │ ├── _student_professional_section.html.erb │ ├── _studio_list.html.erb │ ├── back_numbers.html.erb │ ├── backs.html.erb │ ├── certificates.html.erb │ ├── couples.html.erb │ ├── edit.html.erb │ ├── entries.html.erb │ ├── heats.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── labels.html.erb │ ├── new.html.erb │ ├── scores.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── staff.html.erb │ ├── recordings │ ├── _form.html.erb │ ├── _recording.html.erb │ ├── _recording.json.jbuilder │ ├── edit.html.erb │ ├── heat.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── student.html.erb │ ├── scores │ ├── _by_age.html.erb │ ├── _by_level.html.erb │ ├── _by_studio.html.erb │ ├── _callbacks.html.erb │ ├── _cards_heat.html.erb │ ├── _form.html.erb │ ├── _heat_header.html.erb │ ├── _info_box.html.erb │ ├── _instructors.html.erb │ ├── _last_update.html.erb │ ├── _multis.html.erb │ ├── _navigation_footer.html.erb │ ├── _pros.html.erb │ ├── _rank_heat.html.erb │ ├── _score.html.erb │ ├── _score.json.jbuilder │ ├── _skating_content.html.erb │ ├── _solo_heat.html.erb │ ├── _table_heat.html.erb │ ├── by_age.html.erb │ ├── by_level.html.erb │ ├── by_studio.html.erb │ ├── callbacks.html.erb │ ├── comments.csv.erb │ ├── comments.html.erb │ ├── details │ │ ├── _by_age.html.erb │ │ ├── _by_level.html.erb │ │ └── _multis.html.erb │ ├── edit.html.erb │ ├── heat.html.erb │ ├── heatlist.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── instructor.html.erb │ ├── multis.html.erb │ ├── new.html.erb │ ├── pros.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ ├── skating.html.erb │ ├── spa.html.erb │ ├── unscored.csv.erb │ └── unscored.html.erb │ ├── shared │ ├── _environment_banner.html.erb │ ├── _flash_messages.html.erb │ ├── _root_info_box.html.erb │ └── _server_warnings.html.erb │ ├── showcases │ ├── _form.html.erb │ ├── _showcase.html.erb │ ├── _showcase.json.jbuilder │ ├── _showcase_form_with_errors.html.erb │ ├── _showcase_progress.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── new_request.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── solos │ ├── _cat.html.erb │ ├── _form.html.erb │ ├── _offline_footer.html.erb │ ├── _offline_header.html.erb │ ├── _offline_heat_row.html.erb │ ├── _offline_readme.text.erb │ ├── _solo.html.erb │ ├── _solo.json.jbuilder │ ├── djlist.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── songs │ ├── _form.html.erb │ ├── _list.html.erb │ ├── _song.html.erb │ ├── _song.json.jbuilder │ ├── dancelist.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── studios │ ├── _entry.html.erb │ ├── _form.html.erb │ ├── _invoice.html.erb │ ├── _studio.html.erb │ ├── _studio.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── invoice.html.erb │ ├── invoices.html.erb │ ├── new.html.erb │ ├── send_invoice.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── solos.html.erb │ ├── tables │ ├── _form.html.erb │ ├── _studio_tables.html.erb │ ├── _table.html.erb │ ├── _table.json.jbuilder │ ├── arrange.html.erb │ ├── by_studio.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── list.html.erb │ ├── new.html.erb │ ├── public.html.erb │ ├── qrcode.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── studio.html.erb │ └── users │ ├── _form.html.erb │ ├── _password_form_with_errors.html.erb │ ├── _password_progress.html.erb │ ├── _user.html.erb │ ├── _user.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── request_reset.html.erb │ ├── reset.html.erb │ ├── reset_email.html.erb │ ├── show.html.erb │ └── show.json.jbuilder ├── bin ├── apply-changes.rb ├── backup ├── bundle ├── config-update ├── console ├── dev ├── importmap ├── kamal ├── log-heartbeat.sh ├── nav ├── orphan-volumes ├── populate_from_meal_counts.rb ├── prepare.rb ├── prerender ├── rails ├── rake ├── rehome ├── replay ├── run ├── scan_semi_finals.rb └── setup ├── cable └── config.ru ├── cf └── worker │ └── showcase │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── test │ └── index.spec.js │ ├── vitest.config.js │ └── wrangler.toml ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── deploy.iad.yml ├── deploy.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── importmap.rb ├── initializers │ ├── assets.rb │ ├── content_security_policy.rb │ ├── csv.rb │ ├── demo_reset.rb │ ├── enable_yjit.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── permissions_policy.rb │ ├── sentry.rb │ ├── sqlite_config.rb │ └── xlsx.rb ├── locales │ └── en.yml ├── navigator-maintenance.yml ├── nginx.startup ├── puma.rb ├── routes.rb ├── storage.yml ├── storage │ └── development.yml ├── tailwind.config.js ├── tenant │ └── auth.yml └── vector.toml ├── db ├── migrate │ ├── 20220122173240_create_studios.rb │ ├── 20220122173241_create_people.rb │ ├── 20220122173242_create_dances.rb │ ├── 20220122173243_create_entries.rb │ ├── 20220124133957_create_heats.rb │ ├── 20220202153834_create_studio_pairs.rb │ ├── 20220206180026_create_events.rb │ ├── 20220206193836_create_ages.rb │ ├── 20220206193854_create_levels.rb │ ├── 20220208221606_create_categories.rb │ ├── 20220212001802_add_intermix_to_events.rb │ ├── 20220212171521_add_order_to_dances.rb │ ├── 20220214194448_create_scores.rb │ ├── 20220217003153_create_solos.rb │ ├── 20220218152002_add_song_to_solos.rb │ ├── 20220223032029_add_instructor_to_entry.rb │ ├── 20220301223832_add_solo_category_to_dance.rb │ ├── 20220310220503_add_current_heat_to_events.rb │ ├── 20220421013549_create_formations.rb │ ├── 20220421144933_add_ballrooms_to_events.rb │ ├── 20220425210448_add_heat_length_to_events.rb │ ├── 20220427002212_add_exclude_to_person.rb │ ├── 20220427225436_create_multis.rb │ ├── 20220501162747_create_billables.rb │ ├── 20220501163609_create_person_options.rb │ ├── 20220501163652_create_package_includes.rb │ ├── 20220507162016_add_slot_to_score.rb │ ├── 20220509185821_add_costs_to_studios.rb │ ├── 20220510132923_create_active_storage_tables.active_storage.rb │ ├── 20220510132924_create_action_text_tables.action_text.rb │ ├── 20220510161408_add_email_to_event.rb │ ├── 20220516162358_add_default_package_to_studios.rb │ ├── 20220517173618_add_max_heat_size_to_event.rb │ ├── 20220519134900_add_more_default_packages_to_studios.rb │ ├── 20220527143539_add_grid_to_dances.rb │ ├── 20220604141131_create_users.rb │ ├── 20220610120655_add_back_numbers_to_event.rb │ ├── 20220611163304_add_track_ages_to_events.rb │ ├── 20220613132933_add_column_order_to_events.rb │ ├── 20220616181115_add_open_scoring_to_event.rb │ ├── 20220622011356_add_solo_length_to_event.rb │ ├── 20220622141547_add_on_floor_to_formations.rb │ ├── 20220629150139_add_ballrooms_and_heat_size_to_category.rb │ ├── 20220712234830_add_theme_to_events.rb │ ├── 20220714122632_add_comments_to_scores.rb │ ├── 20220723202802_add_locked_to_events.rb │ ├── 20220727000152_add_studio_zero.rb │ ├── 20220802135733_allow_heat_number_to_be_a_float.rb │ ├── 20220818222750_add_student_costs_to_studios.rb │ ├── 20220824111138_add_student_invoice_to_event.rb │ ├── 20220902165123_add_ballroom_to_heats.rb │ ├── 20220910184733_create_judges.rb │ ├── 20221015184926_add_multi_scoring_to_event.rb │ ├── 20230119173959_add_heats_to_category.rb │ ├── 20230119174433_create_cat_extensions.rb │ ├── 20230124233129_add_feedback_to_scores.rb │ ├── 20230323024334_routine_categories.rb │ ├── 20230430173328_add_judge_comments_to_event.rb │ ├── 20230603231658_add_cost_override_to_dances_and_categories.rb │ ├── 20230901183948_add_agenda_based_entries_to_events.rb │ ├── 20230909234512_add_pro_heats.rb │ ├── 20230923182922_assign_judges.rb │ ├── 20230930144237_add_font_size_to_events.rb │ ├── 20231001165834_add_semi_finals_to_multis.rb │ ├── 20231010012726_create_songs.rb │ ├── 20231025173707_addtimesoption.rb │ ├── 20231027142420_create_locations.rb │ ├── 20231027142506_create_showcases.rb │ ├── 20231028131227_add_order_to_showcases.rb │ ├── 20231115014415_sololevels.rb │ ├── 20231207142159_add_region_to_location.rb │ ├── 20231220195604_add_lock_to_category.rb │ ├── 20231227064854_add_studio_zero_again.rb │ ├── 20240109224242_clearwater.rb │ ├── 20240116131352_add_duration_to_cat_extension.rb │ ├── 20240120160513_add_sisters_to_location.rb │ ├── 20240129193921_add_font_family_to_events.rb │ ├── 20240219210158_include_independent_instructors.rb │ ├── 20240226132621_add_closed_scoring_to_event.rb │ ├── 20240229134705_add_heat_order.rb │ ├── 20240310223701_judge_show_assignments.rb │ ├── 20240324222321_create_age_costs.rb │ ├── 20240425003705_add_dance_limit.rb │ ├── 20240512170708_add_trust_level_to_locations.rb │ ├── 20240529200032_add_ballroom_to_judge.rb │ ├── 20240708205904_add_counter_color_to_events.rb │ ├── 20240708213142_add_prev_number_to_heats.rb │ ├── 20240804224317_add_ballroom_to_studios.rb │ ├── 20240822010045_add_limit_to_dances.rb │ ├── 20240831131433_add_invoice_to_to_person.rb │ ├── 20241001130746_add_studio_cost_to_agenda.rb │ ├── 20241002125818_add_pro_heat_costs.rb │ ├── 20241010143111_add_solos_to_judges.rb │ ├── 20241230174102_create_regions.rb │ ├── 20250126024112_add_locale_to_locations.rb │ ├── 20250128222542_add_strict_scoring_to_event.rb │ ├── 20250222014457_add_split_to_categories.rb │ ├── 20250307070516_add_available_to_person.rb │ ├── 20250307070551_add_available_to_person_again.rb │ ├── 20250329010216_create_feedbacks.rb │ ├── 20250407144301_add_pro_am_to_events.rb │ ├── 20250614223303_create_recordings.rb │ ├── 20250703114033_create_tables.rb │ ├── 20250707210441_add_option_support_to_tables.rb │ ├── 20250708212812_add_table_size_to_billables.rb │ ├── 20250729111732_add_locked_to_tables.rb │ ├── 20250731121950_add_date_to_showcases.rb │ ├── 20250905233753_add_finalist_to_events.rb │ ├── 20250916165400_create_payments.rb │ ├── 20250925171325_add_studio_formation_cost_and_proam_studio_invoice_to_events.rb │ ├── 20250926120648_add_studio_to_entries.rb │ ├── 20251001140905_create_multi_levels.rb │ ├── 20251006000001_create_questions.rb │ ├── 20251006000002_create_answers.rb │ ├── 20251107131836_add_partnerless_entries_to_events.rb │ ├── 20251116195631_add_student_judge_assignment_fields.rb │ └── 20251202203916_add_age_couple_columns_to_multi_levels.rb ├── schema.rb ├── seeds.rb └── seeds │ ├── generic.rb │ └── generic.yaml ├── docker-compose.yml ├── docs └── vector-logging-setup.md ├── fly.toml ├── fly └── applications │ ├── logger │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── accessories │ │ └── files │ │ │ ├── nginx-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── vector.toml │ ├── bin │ │ └── sync.ts │ ├── bun.lock │ ├── deploy.ts │ ├── deploy.yml │ ├── fly.toml │ ├── index.ts │ ├── logfiler.ts │ ├── monitor.ts │ ├── package.json │ ├── public │ │ └── client.js │ ├── sentry.ts │ ├── server.ts │ ├── test-vector-client.toml │ ├── test-vector-send.sh │ ├── tsconfig.json │ ├── view.ts │ └── websocket.ts │ ├── printer │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── bun.lock │ ├── deploy.yml │ ├── fly.toml │ ├── package.json │ ├── server.ts │ └── tsconfig.json │ ├── proxy │ ├── Dockerfile │ ├── README.md │ ├── fly.toml │ ├── go.mod │ ├── main.go │ ├── main_test.go │ └── middleware.go │ └── publish │ ├── config.ru │ └── public │ └── .keep ├── go.mod ├── go.sum ├── legacy.toml ├── lib ├── assets │ └── .keep ├── erb_prism_converter.rb ├── html_validator.rb.bak ├── htpasswd_updater.rb ├── json_logger.rb ├── map_downloader.rb ├── navigator_config_generator.rb ├── prerender_configuration.rb ├── region_configuration.rb ├── showcase_date_sync.rb ├── showcases_loader.rb └── tasks │ ├── .keep │ ├── assets.rake │ ├── cloudflare.rake │ ├── esbuild.rake │ ├── eslint.rake │ ├── mapper.rake │ ├── navigator.rake │ └── prerender.rake ├── log └── .keep ├── nav.log ├── nav.toml ├── package.json ├── plans ├── ACTION_CABLE_ON_DEMAND.md ├── ANYCABLE_MIGRATION_PLAN.md ├── CUSTOM_WEBSOCKET_PLAN.md ├── CUSTOM_WEBSOCKET_PLAN_V2.md ├── ERB_CONVERTER_INTEGRATION_STATUS.md ├── ERB_PRISM_APPROACH.md ├── HEATLIST_JS_IMPLEMENTATION.md ├── HERB_AST_STRUCTURE.md ├── HERB_EXPLORATION_SUMMARY.md ├── HERB_MIGRATION_PROPOSAL.md ├── JSON_SIZE_ANALYSIS.md ├── MAP_GENERATION_WITHOUT_GIT.md ├── MEMORY_OPTIMIZATION_PLAN.md ├── NEXT_STEPS_ERB_STIMULUS.md ├── OAUTH_IMPLEMENTATION_PLAN.md ├── OFFLINE_SCORING_COMPLETION.md ├── PER_TENANT_OPTIMIZATION.md ├── PHASE_7_MANUAL_TESTING.md ├── PRISM_EXPLORATION_SUMMARY.md ├── REMOVE_SHOWCASES_YML_FROM_GIT.md ├── RUBY2JS_SHARED_LOGIC.md ├── SLOT_NAVIGATION.md ├── SPA_OFFLINE_SCORING.md ├── SPA_REFACTORING.md ├── SPA_SYNC_STRATEGY.md ├── SPA_TEST_MATRIX.md ├── STIMULUS_IMPLEMENTATION_STATUS.md ├── STUDENT_JUDGE_ASSIGNMENT.md └── analyze_student_assignments.rb ├── public ├── 403-index.html ├── 403.html ├── 404.html ├── 422.html ├── 500.html ├── 503.html ├── apple-touch-icon-120x120-precomposed.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── arthur-murray-logo-wide.png ├── arthur-murray-logo.gif ├── candc.png ├── carolina-dance-works.jpg ├── favicon.ico ├── fonts │ ├── Algerian Regular.ttf │ ├── Berlin Sans FB Demi Bold.ttf │ ├── Bevan-Italic.ttf │ ├── Bevan-Regular.ttf │ └── readme.html ├── fred-astaire-logo.jpg ├── intertwingly.png ├── mdballroom.webp ├── nashville.jpg ├── ras.jpg ├── robots.txt ├── service-worker.js └── up ├── run_websocket_test.sh ├── script ├── config-update ├── erb_prism_converter_prototype.rb ├── explore_erb_compilation.rb ├── explore_herb.rb ├── explore_herb_detailed.rb ├── explore_prism.rb ├── generate_and_upload_maps.rb ├── generate_navigator_config.rb ├── hook_app_idle.sh ├── hook_navigator_idle.sh ├── hook_navigator_start.sh ├── import_compmngr.rb ├── import_entries ├── nav_initialization.rb ├── orphan_databases.rb ├── prism_to_js_prototype.rb ├── ready.sh ├── reassign_all_tables.rb ├── s3-check.js ├── s3-check.rb ├── s3-download.rb ├── s3-upload.rb ├── sync_databases_s3.rb ├── test_herb_complex.rb ├── test_websocket_stress.rb ├── update_configuration.rb ├── update_htpasswd.rb ├── update_meals.rb ├── zap-password └── zones.rb ├── scripts ├── hydrate_heats.mjs ├── render_erb_and_js.rb ├── render_js_template.mjs └── render_js_template.rb ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ ├── application_cable │ │ └── connection_test.rb │ ├── command_output_channel_test.rb │ ├── current_heat_channel_test.rb │ └── scores_channel_test.rb ├── controllers │ ├── .keep │ ├── admin_controller_test.rb │ ├── answers_controller_test.rb │ ├── billables_controller_test.rb │ ├── categories_controller_test.rb │ ├── concerns │ │ ├── configurator_test.rb │ │ ├── entry_form_test.rb │ │ ├── heat_scheduler_test.rb │ │ ├── multi_level_splitter_test.rb │ │ ├── printable_invoice_test.rb │ │ ├── printable_test.rb │ │ └── table_assigner_test.rb │ ├── dances_controller_test.rb │ ├── docs_controller_test.rb │ ├── entries_controller_test.rb │ ├── event_controller_test.rb │ ├── feedbacks_controller_test.rb │ ├── formations_controller_test.rb │ ├── heats_controller_improved_test.rb │ ├── heats_controller_test.rb │ ├── invoices_controller_test.rb │ ├── locations_controller_test.rb │ ├── multis_controller_test.rb │ ├── payments_controller_test.rb │ ├── people_controller_test.rb │ ├── recordings_controller_test.rb │ ├── score_storage_test.rb │ ├── scores_controller_test.rb │ ├── showcases_controller_test.rb │ ├── solos_controller_test.rb │ ├── solos_controller_test_original.rb │ ├── songs_controller_test.rb │ ├── studios_controller_test.rb │ ├── tables_controller_test.rb │ ├── templates_controller_test.rb │ └── users_controller_test.rb ├── fixtures │ ├── action_text │ │ └── rich_texts.yml │ ├── age_costs.yml │ ├── ages.yml │ ├── answers.yml │ ├── billables.yml │ ├── cat_extensions.yml │ ├── categories.yml │ ├── dances.yml │ ├── entries.yml │ ├── events.yml │ ├── feedbacks.yml │ ├── files │ │ ├── .keep │ │ ├── deployed.json │ │ └── regions.json │ ├── formations.yml │ ├── heats.yml │ ├── judges.yml │ ├── levels.yml │ ├── locations.yml │ ├── multi_levels.yml │ ├── multis.yml │ ├── package_includes.yml │ ├── payments.yml │ ├── people.yml │ ├── person_options.yml │ ├── questions.yml │ ├── recordings.yml │ ├── regions.yml │ ├── scores.yml │ ├── showcases.yml │ ├── solos.yml │ ├── songs.yml │ ├── studio_pairs.yml │ ├── studios.yml │ ├── tables.yml │ ├── test_data.csv │ └── users.yml ├── helpers │ ├── .keep │ ├── application_helper_test.rb │ └── dance_limits_helper_test.rb ├── integration │ ├── .keep │ └── prerender_configuration_sync_test.rb ├── javascript │ ├── heat_data_manager.test.js │ ├── navigation.test.js │ ├── score_data_helper.test.js │ ├── score_merge_helper.test.js │ ├── score_posting.test.js │ ├── semi_finals.test.js │ ├── setup.js │ └── start_button.test.js ├── jobs │ ├── command_execution_job_test.rb │ ├── offline_playlist_job_test.rb │ └── send_invoice_job_test.rb ├── lib │ ├── erb_prism_converter_test.rb │ └── map_downloader_test.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── age_cost_test.rb │ ├── age_test.rb │ ├── answer_test.rb │ ├── application_record_test.rb │ ├── billable_test.rb │ ├── cat_extension_test.rb │ ├── category_test.rb │ ├── concerns │ │ └── dance_limit_calculator_test.rb │ ├── dance_test.rb │ ├── entry_test.rb │ ├── event_test.rb │ ├── feedback_test.rb │ ├── formation_test.rb │ ├── heat_test.rb │ ├── judge_test.rb │ ├── level_test.rb │ ├── locale_test.rb │ ├── location_test.rb │ ├── multi_level_test.rb │ ├── multi_test.rb │ ├── package_include_test.rb │ ├── payment_test.rb │ ├── person_option_test.rb │ ├── person_test.rb │ ├── question_test.rb │ ├── recording_test.rb │ ├── region_test.rb │ ├── score_test.rb │ ├── showcase_test.rb │ ├── solo_test.rb │ ├── song_test.rb │ ├── studio_pair_test.rb │ ├── studio_test.rb │ ├── table_test.rb │ └── user_test.rb ├── system │ ├── .keep │ ├── billables_test.rb │ ├── categories_test.rb │ ├── dances_test.rb │ ├── entries_test.rb │ ├── feedbacks_test.rb │ ├── formations_test.rb │ ├── heats_test.rb │ ├── locale_test.rb │ ├── locations_test.rb │ ├── multis_test.rb │ ├── payments_test.rb │ ├── people_test.rb │ ├── questions_test.rb │ ├── recordings_test.rb │ ├── scores_test.rb │ ├── showcases_test.rb │ ├── solos_test.rb │ ├── songs_test.rb │ ├── studios_test.rb │ ├── tables_test.rb │ └── users_test.rb ├── tasks │ └── prerender_test.rb ├── test_helper.rb └── views │ └── studios │ └── invoice_view_test.rb ├── test_websocket_gemfile ├── test_websocket_gemfile.lock ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep ├── utils └── mapper │ ├── files.yml │ ├── makemaps.js │ ├── package-lock.json │ └── package.json ├── vendor ├── javascript │ └── @xterm--xterm.js └── modules.txt └── vitest.config.js /.claude/skills/compare-erb-js/skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/compare-erb-js/skill.md -------------------------------------------------------------------------------- /.claude/skills/database/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/database/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/deployment/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/deployment/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/fly-ssh/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/fly-ssh/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/navigator/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/navigator/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/render-page/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/render-page/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/render-page/scripts/render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/render-page/scripts/render.rb -------------------------------------------------------------------------------- /.claude/skills/testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.claude/skills/testing/SKILL.md -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.gitmodules -------------------------------------------------------------------------------- /.kamal/hooks/docker-setup.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Docker set up on $KAMAL_HOSTS..." 4 | -------------------------------------------------------------------------------- /.kamal/hooks/post-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.kamal/hooks/post-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/post-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooted kamal-proxy on $KAMAL_HOSTS" 4 | -------------------------------------------------------------------------------- /.kamal/hooks/pre-build.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.kamal/hooks/pre-build.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-connect.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.kamal/hooks/pre-connect.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/.kamal/hooks/pre-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooting kamal-proxy on $KAMAL_HOSTS..." 4 | -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/Procfile.dev -------------------------------------------------------------------------------- /Procfile.fly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/Procfile.fly -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/Rakefile -------------------------------------------------------------------------------- /adminui-cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/adminui-cover.webp -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/Padlock-bronze-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/images/Padlock-bronze-closed.svg -------------------------------------------------------------------------------- /app/assets/images/Padlock-bronze-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/images/Padlock-bronze-open.svg -------------------------------------------------------------------------------- /app/assets/stylesheets/actiontext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/stylesheets/actiontext.css -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/dictaphone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/stylesheets/dictaphone.css -------------------------------------------------------------------------------- /app/assets/stylesheets/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/stylesheets/docs.css -------------------------------------------------------------------------------- /app/assets/stylesheets/xterm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/stylesheets/xterm.css -------------------------------------------------------------------------------- /app/assets/tailwind/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/assets/tailwind/application.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/channels/command_output_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/channels/command_output_channel.rb -------------------------------------------------------------------------------- /app/channels/config_update_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/channels/config_update_channel.rb -------------------------------------------------------------------------------- /app/channels/scores_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/channels/scores_channel.rb -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/answers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/answers_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/billables_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/billables_controller.rb -------------------------------------------------------------------------------- /app/controllers/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/configurator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/concerns/configurator.rb -------------------------------------------------------------------------------- /app/controllers/concerns/dbQuery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/concerns/dbQuery.rb -------------------------------------------------------------------------------- /app/controllers/concerns/entry_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/concerns/entry_form.rb -------------------------------------------------------------------------------- /app/controllers/concerns/heat_scheduler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/concerns/heat_scheduler.rb -------------------------------------------------------------------------------- /app/controllers/concerns/printable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/concerns/printable.rb -------------------------------------------------------------------------------- /app/controllers/concerns/retriable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/concerns/retriable.rb -------------------------------------------------------------------------------- /app/controllers/dances_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/dances_controller.rb -------------------------------------------------------------------------------- /app/controllers/docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/docs_controller.rb -------------------------------------------------------------------------------- /app/controllers/entries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/entries_controller.rb -------------------------------------------------------------------------------- /app/controllers/event_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/event_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/feedbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/formations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/formations_controller.rb -------------------------------------------------------------------------------- /app/controllers/heats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/heats_controller.rb -------------------------------------------------------------------------------- /app/controllers/locations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/locations_controller.rb -------------------------------------------------------------------------------- /app/controllers/multis_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/multis_controller.rb -------------------------------------------------------------------------------- /app/controllers/payments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/payments_controller.rb -------------------------------------------------------------------------------- /app/controllers/people_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/people_controller.rb -------------------------------------------------------------------------------- /app/controllers/recordings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/recordings_controller.rb -------------------------------------------------------------------------------- /app/controllers/scores_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/scores_controller.rb -------------------------------------------------------------------------------- /app/controllers/showcases_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/showcases_controller.rb -------------------------------------------------------------------------------- /app/controllers/solos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/solos_controller.rb -------------------------------------------------------------------------------- /app/controllers/songs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/songs_controller.rb -------------------------------------------------------------------------------- /app/controllers/studios_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/studios_controller.rb -------------------------------------------------------------------------------- /app/controllers/tables_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/tables_controller.rb -------------------------------------------------------------------------------- /app/controllers/templates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/templates_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- 1 | module AdminHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/billables_helper.rb: -------------------------------------------------------------------------------- 1 | module BillablesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/categories_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/helpers/categories_helper.rb -------------------------------------------------------------------------------- /app/helpers/dance_limits_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/helpers/dance_limits_helper.rb -------------------------------------------------------------------------------- /app/helpers/dances_helper.rb: -------------------------------------------------------------------------------- 1 | module DancesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/docs_helper.rb: -------------------------------------------------------------------------------- 1 | module DocsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/entries_helper.rb: -------------------------------------------------------------------------------- 1 | module EntriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/event_helper.rb: -------------------------------------------------------------------------------- 1 | module EventHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/feedbacks_helper.rb: -------------------------------------------------------------------------------- 1 | module FeedbacksHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/formations_helper.rb: -------------------------------------------------------------------------------- 1 | module FormationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/heats_helper.rb: -------------------------------------------------------------------------------- 1 | module HeatsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/locations_helper.rb: -------------------------------------------------------------------------------- 1 | module LocationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/multis_helper.rb: -------------------------------------------------------------------------------- 1 | module MultisHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/payments_helper.rb: -------------------------------------------------------------------------------- 1 | module PaymentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/people_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/helpers/people_helper.rb -------------------------------------------------------------------------------- /app/helpers/recordings_helper.rb: -------------------------------------------------------------------------------- 1 | module RecordingsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/scores_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/helpers/scores_helper.rb -------------------------------------------------------------------------------- /app/helpers/showcases_helper.rb: -------------------------------------------------------------------------------- 1 | module ShowcasesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/solos_helper.rb: -------------------------------------------------------------------------------- 1 | module SolosHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/songs_helper.rb: -------------------------------------------------------------------------------- 1 | module SongsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/studios_helper.rb: -------------------------------------------------------------------------------- 1 | module StudiosHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/tables_helper.rb: -------------------------------------------------------------------------------- 1 | module TablesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/channels/index.js -------------------------------------------------------------------------------- /app/javascript/channels/scores_channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/channels/scores_channel.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/helpers/heat_navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/helpers/heat_navigator.js -------------------------------------------------------------------------------- /app/javascript/helpers/inject_region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/helpers/inject_region.js -------------------------------------------------------------------------------- /app/javascript/lib/dirty_scores_queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/lib/dirty_scores_queue.js -------------------------------------------------------------------------------- /app/javascript/lib/heat_hydrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/lib/heat_hydrator.js -------------------------------------------------------------------------------- /app/javascript/lib/subject_sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/javascript/lib/subject_sorter.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/command_execution_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/jobs/command_execution_job.rb -------------------------------------------------------------------------------- /app/jobs/config_update_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/jobs/config_update_job.rb -------------------------------------------------------------------------------- /app/jobs/offline_playlist_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/jobs/offline_playlist_job.rb -------------------------------------------------------------------------------- /app/jobs/send_invoice_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/jobs/send_invoice_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/age.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/age.rb -------------------------------------------------------------------------------- /app/models/age_cost.rb: -------------------------------------------------------------------------------- 1 | class AgeCost < ApplicationRecord 2 | belongs_to :age 3 | end 4 | -------------------------------------------------------------------------------- /app/models/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/answer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/billable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/billable.rb -------------------------------------------------------------------------------- /app/models/cat_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/cat_extension.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/compmngr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/concerns/compmngr.rb -------------------------------------------------------------------------------- /app/models/dance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/dance.rb -------------------------------------------------------------------------------- /app/models/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/entry.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/feedback.rb -------------------------------------------------------------------------------- /app/models/formation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/formation.rb -------------------------------------------------------------------------------- /app/models/heat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/heat.rb -------------------------------------------------------------------------------- /app/models/judge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/judge.rb -------------------------------------------------------------------------------- /app/models/level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/level.rb -------------------------------------------------------------------------------- /app/models/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/locale.rb -------------------------------------------------------------------------------- /app/models/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/location.rb -------------------------------------------------------------------------------- /app/models/multi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/multi.rb -------------------------------------------------------------------------------- /app/models/multi_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/multi_level.rb -------------------------------------------------------------------------------- /app/models/package_include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/package_include.rb -------------------------------------------------------------------------------- /app/models/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/payment.rb -------------------------------------------------------------------------------- /app/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/person.rb -------------------------------------------------------------------------------- /app/models/person_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/person_option.rb -------------------------------------------------------------------------------- /app/models/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/question.rb -------------------------------------------------------------------------------- /app/models/recording.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/recording.rb -------------------------------------------------------------------------------- /app/models/region.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/region.rb -------------------------------------------------------------------------------- /app/models/score.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/score.rb -------------------------------------------------------------------------------- /app/models/showcase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/showcase.rb -------------------------------------------------------------------------------- /app/models/solo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/solo.rb -------------------------------------------------------------------------------- /app/models/song.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/song.rb -------------------------------------------------------------------------------- /app/models/studio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/studio.rb -------------------------------------------------------------------------------- /app/models/studio_pair.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/studio_pair.rb -------------------------------------------------------------------------------- /app/models/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/table.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/admin/_inventory_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/_inventory_nav.html.erb -------------------------------------------------------------------------------- /app/views/admin/apply.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/apply.html.erb -------------------------------------------------------------------------------- /app/views/admin/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/inventory.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/inventory.html.erb -------------------------------------------------------------------------------- /app/views/admin/inventory_heats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/inventory_heats.html.erb -------------------------------------------------------------------------------- /app/views/admin/inventory_tables.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/inventory_tables.html.erb -------------------------------------------------------------------------------- /app/views/admin/new_region.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/new_region.html.erb -------------------------------------------------------------------------------- /app/views/admin/region.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/region.html.erb -------------------------------------------------------------------------------- /app/views/admin/regions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/admin/regions.html.erb -------------------------------------------------------------------------------- /app/views/answers/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/answers/index.html.erb -------------------------------------------------------------------------------- /app/views/answers/report.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/answers/report.html.erb -------------------------------------------------------------------------------- /app/views/billables/_billable.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/_billable.html.erb -------------------------------------------------------------------------------- /app/views/billables/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/_form.html.erb -------------------------------------------------------------------------------- /app/views/billables/_group.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/_group.html.erb -------------------------------------------------------------------------------- /app/views/billables/_index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/_index.html.erb -------------------------------------------------------------------------------- /app/views/billables/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/edit.html.erb -------------------------------------------------------------------------------- /app/views/billables/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/index.html.erb -------------------------------------------------------------------------------- /app/views/billables/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/billables/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/new.html.erb -------------------------------------------------------------------------------- /app/views/billables/people.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/people.html.erb -------------------------------------------------------------------------------- /app/views/billables/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/show.html.erb -------------------------------------------------------------------------------- /app/views/billables/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/billables/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/categories/_category.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/_category.html.erb -------------------------------------------------------------------------------- /app/views/categories/_dances.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/_dances.html.erb -------------------------------------------------------------------------------- /app/views/categories/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/_form.html.erb -------------------------------------------------------------------------------- /app/views/categories/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/edit.html.erb -------------------------------------------------------------------------------- /app/views/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/categories/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/categories/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/new.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/categories/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/dances/_categories.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/_categories.html.erb -------------------------------------------------------------------------------- /app/views/dances/_dance.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/_dance.html.erb -------------------------------------------------------------------------------- /app/views/dances/_dance.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/_dance.json.jbuilder -------------------------------------------------------------------------------- /app/views/dances/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/_form.html.erb -------------------------------------------------------------------------------- /app/views/dances/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/edit.html.erb -------------------------------------------------------------------------------- /app/views/dances/form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/form.html.erb -------------------------------------------------------------------------------- /app/views/dances/heats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/heats.html.erb -------------------------------------------------------------------------------- /app/views/dances/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/index.html.erb -------------------------------------------------------------------------------- /app/views/dances/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/dances/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/new.html.erb -------------------------------------------------------------------------------- /app/views/dances/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/show.html.erb -------------------------------------------------------------------------------- /app/views/dances/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/dances/trophies.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/dances/trophies.html.erb -------------------------------------------------------------------------------- /app/views/docs/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/Getting-Started.md -------------------------------------------------------------------------------- /app/views/docs/Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/Glossary.md -------------------------------------------------------------------------------- /app/views/docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/Troubleshooting.md -------------------------------------------------------------------------------- /app/views/docs/experimental/Compmngr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/experimental/Compmngr.md -------------------------------------------------------------------------------- /app/views/docs/experimental/Feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/experimental/Feedback.md -------------------------------------------------------------------------------- /app/views/docs/experimental/I18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/experimental/I18n.md -------------------------------------------------------------------------------- /app/views/docs/experimental/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/experimental/Questions.md -------------------------------------------------------------------------------- /app/views/docs/experimental/Tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/experimental/Tables.md -------------------------------------------------------------------------------- /app/views/docs/experimental/Voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/experimental/Voice.md -------------------------------------------------------------------------------- /app/views/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/index.md -------------------------------------------------------------------------------- /app/views/docs/ops/Backups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/ops/Backups.md -------------------------------------------------------------------------------- /app/views/docs/ops/Cost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/ops/Cost.md -------------------------------------------------------------------------------- /app/views/docs/ops/Devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/ops/Devices.md -------------------------------------------------------------------------------- /app/views/docs/ops/Hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/ops/Hosting.md -------------------------------------------------------------------------------- /app/views/docs/ops/Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/ops/Logging.md -------------------------------------------------------------------------------- /app/views/docs/ops/Passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/ops/Passwords.md -------------------------------------------------------------------------------- /app/views/docs/roles/DJ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/roles/DJ.md -------------------------------------------------------------------------------- /app/views/docs/roles/Emcee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/roles/Emcee.md -------------------------------------------------------------------------------- /app/views/docs/roles/Event-Organizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/roles/Event-Organizer.md -------------------------------------------------------------------------------- /app/views/docs/roles/Judge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/roles/Judge.md -------------------------------------------------------------------------------- /app/views/docs/roles/Visiting-Studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/roles/Visiting-Studio.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Agenda.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Back-Numbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Back-Numbers.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Ballrooms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Ballrooms.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Counter.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Entries.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Invoicing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Invoicing.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Mobile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Mobile.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Multi-Dance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Multi-Dance.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Publishing.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Reordering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Reordering.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Scheduling.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Scoring.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Settings.md -------------------------------------------------------------------------------- /app/views/docs/tasks/Solos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/docs/tasks/Solos.md -------------------------------------------------------------------------------- /app/views/entries/_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/_box.html.erb -------------------------------------------------------------------------------- /app/views/entries/_dances.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/_dances.html.erb -------------------------------------------------------------------------------- /app/views/entries/_entry.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/_entry.html.erb -------------------------------------------------------------------------------- /app/views/entries/_entry.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/_entry.json.jbuilder -------------------------------------------------------------------------------- /app/views/entries/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/_form.html.erb -------------------------------------------------------------------------------- /app/views/entries/couples.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/couples.html.erb -------------------------------------------------------------------------------- /app/views/entries/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/edit.html.erb -------------------------------------------------------------------------------- /app/views/entries/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/index.html.erb -------------------------------------------------------------------------------- /app/views/entries/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/entries/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/new.html.erb -------------------------------------------------------------------------------- /app/views/entries/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/show.html.erb -------------------------------------------------------------------------------- /app/views/entries/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/entries/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/event/_aumap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/_aumap.html.erb -------------------------------------------------------------------------------- /app/views/event/_clone.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/_clone.html.erb -------------------------------------------------------------------------------- /app/views/event/_eumap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/_eumap.html.erb -------------------------------------------------------------------------------- /app/views/event/_heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/_heat.html.erb -------------------------------------------------------------------------------- /app/views/event/_jpmap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/_jpmap.html.erb -------------------------------------------------------------------------------- /app/views/event/_map.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/_map.html.erb -------------------------------------------------------------------------------- /app/views/event/_usmap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/_usmap.html.erb -------------------------------------------------------------------------------- /app/views/event/ages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/ages.html.erb -------------------------------------------------------------------------------- /app/views/event/auth.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/auth.html.erb -------------------------------------------------------------------------------- /app/views/event/clone.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/clone.html.erb -------------------------------------------------------------------------------- /app/views/event/console.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/console.html.erb -------------------------------------------------------------------------------- /app/views/event/counter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/counter.html.erb -------------------------------------------------------------------------------- /app/views/event/dances.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/dances.html.erb -------------------------------------------------------------------------------- /app/views/event/env.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/env.html.erb -------------------------------------------------------------------------------- /app/views/event/import.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/import.html.erb -------------------------------------------------------------------------------- /app/views/event/instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/instructions.html.erb -------------------------------------------------------------------------------- /app/views/event/judge.json.erb: -------------------------------------------------------------------------------- 1 | <%= raw JSON.pretty_generate(@sheets) %> -------------------------------------------------------------------------------- /app/views/event/judge.xlsx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/judge.xlsx.erb -------------------------------------------------------------------------------- /app/views/event/landing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/landing.html.erb -------------------------------------------------------------------------------- /app/views/event/levels.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/levels.html.erb -------------------------------------------------------------------------------- /app/views/event/publish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/publish.html.erb -------------------------------------------------------------------------------- /app/views/event/qrcode.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/qrcode.html.erb -------------------------------------------------------------------------------- /app/views/event/region.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/region.html.erb -------------------------------------------------------------------------------- /app/views/event/regions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/regions.html.erb -------------------------------------------------------------------------------- /app/views/event/root.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/root.html.erb -------------------------------------------------------------------------------- /app/views/event/select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/select.html.erb -------------------------------------------------------------------------------- /app/views/event/settings/clone.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/settings/clone.html.erb -------------------------------------------------------------------------------- /app/views/event/settings/heats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/settings/heats.html.erb -------------------------------------------------------------------------------- /app/views/event/settings/judging.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/settings/judging.html.erb -------------------------------------------------------------------------------- /app/views/event/settings/options.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/settings/options.html.erb -------------------------------------------------------------------------------- /app/views/event/settings/prices.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/settings/prices.html.erb -------------------------------------------------------------------------------- /app/views/event/settings/staff.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/settings/staff.html.erb -------------------------------------------------------------------------------- /app/views/event/showcases.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/showcases.html.erb -------------------------------------------------------------------------------- /app/views/event/songs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/songs.html.erb -------------------------------------------------------------------------------- /app/views/event/spreadsheet.json.erb: -------------------------------------------------------------------------------- 1 | <%= raw JSON.pretty_generate(@sheets) %> -------------------------------------------------------------------------------- /app/views/event/spreadsheet.xlsx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/spreadsheet.xlsx.erb -------------------------------------------------------------------------------- /app/views/event/summary.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/summary.html.erb -------------------------------------------------------------------------------- /app/views/event/upload.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/upload.html.erb -------------------------------------------------------------------------------- /app/views/event/web_console.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/event/web_console.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/_buttons.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/_buttons.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/_feedback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/_feedback.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/_form.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/edit.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/index.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/feedbacks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/new.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/show.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/feedbacks/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/formations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/_form.html.erb -------------------------------------------------------------------------------- /app/views/formations/_formation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/_formation.html.erb -------------------------------------------------------------------------------- /app/views/formations/_info_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/_info_box.html.erb -------------------------------------------------------------------------------- /app/views/formations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/edit.html.erb -------------------------------------------------------------------------------- /app/views/formations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/index.html.erb -------------------------------------------------------------------------------- /app/views/formations/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/formations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/new.html.erb -------------------------------------------------------------------------------- /app/views/formations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/show.html.erb -------------------------------------------------------------------------------- /app/views/formations/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/formations/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/heats/_category.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/_category.html.erb -------------------------------------------------------------------------------- /app/views/heats/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/_form.html.erb -------------------------------------------------------------------------------- /app/views/heats/_heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/_heat.html.erb -------------------------------------------------------------------------------- /app/views/heats/_heat.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/_heat.json.jbuilder -------------------------------------------------------------------------------- /app/views/heats/_renumber.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/_renumber.html.erb -------------------------------------------------------------------------------- /app/views/heats/_solo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/_solo.html.erb -------------------------------------------------------------------------------- /app/views/heats/book.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/book.html.erb -------------------------------------------------------------------------------- /app/views/heats/djlist.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/djlist.html.erb -------------------------------------------------------------------------------- /app/views/heats/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/edit.html.erb -------------------------------------------------------------------------------- /app/views/heats/index.csv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/index.csv.erb -------------------------------------------------------------------------------- /app/views/heats/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/index.html.erb -------------------------------------------------------------------------------- /app/views/heats/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/heats/index.xlsx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/index.xlsx.erb -------------------------------------------------------------------------------- /app/views/heats/limits.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/limits.html.erb -------------------------------------------------------------------------------- /app/views/heats/mobile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/mobile.html.erb -------------------------------------------------------------------------------- /app/views/heats/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/new.html.erb -------------------------------------------------------------------------------- /app/views/heats/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/show.html.erb -------------------------------------------------------------------------------- /app/views/heats/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/heats/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/action_text/contents/_content.html.erb: -------------------------------------------------------------------------------- 1 |
2 | <%= yield -%> 3 |
4 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/docs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/layouts/docs.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/layouts/settings.html.erb -------------------------------------------------------------------------------- /app/views/locations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/_form.html.erb -------------------------------------------------------------------------------- /app/views/locations/_location.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/_location.html.erb -------------------------------------------------------------------------------- /app/views/locations/_showcases.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/_showcases.html.erb -------------------------------------------------------------------------------- /app/views/locations/auth.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/auth.html.erb -------------------------------------------------------------------------------- /app/views/locations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/edit.html.erb -------------------------------------------------------------------------------- /app/views/locations/events.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/events.html.erb -------------------------------------------------------------------------------- /app/views/locations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/index.html.erb -------------------------------------------------------------------------------- /app/views/locations/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/locations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/new.html.erb -------------------------------------------------------------------------------- /app/views/locations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/show.html.erb -------------------------------------------------------------------------------- /app/views/locations/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/locations/sisters.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/locations/sisters.html.erb -------------------------------------------------------------------------------- /app/views/multis/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/_form.html.erb -------------------------------------------------------------------------------- /app/views/multis/_multi.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/_multi.html.erb -------------------------------------------------------------------------------- /app/views/multis/_multi.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/_multi.json.jbuilder -------------------------------------------------------------------------------- /app/views/multis/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/edit.html.erb -------------------------------------------------------------------------------- /app/views/multis/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/index.html.erb -------------------------------------------------------------------------------- /app/views/multis/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/multis/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/new.html.erb -------------------------------------------------------------------------------- /app/views/multis/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/show.html.erb -------------------------------------------------------------------------------- /app/views/multis/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/multis/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/payments/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/_form.html.erb -------------------------------------------------------------------------------- /app/views/payments/_payment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/_payment.html.erb -------------------------------------------------------------------------------- /app/views/payments/_payment.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/_payment.json.jbuilder -------------------------------------------------------------------------------- /app/views/payments/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/edit.html.erb -------------------------------------------------------------------------------- /app/views/payments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/index.html.erb -------------------------------------------------------------------------------- /app/views/payments/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/payments/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/new.html.erb -------------------------------------------------------------------------------- /app/views/payments/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/show.html.erb -------------------------------------------------------------------------------- /app/views/payments/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/payments/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/people/_action_buttons.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_action_buttons.html.erb -------------------------------------------------------------------------------- /app/views/people/_category_score.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_category_score.html.erb -------------------------------------------------------------------------------- /app/views/people/_dances_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_dances_table.html.erb -------------------------------------------------------------------------------- /app/views/people/_entries_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_entries_table.html.erb -------------------------------------------------------------------------------- /app/views/people/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_form.html.erb -------------------------------------------------------------------------------- /app/views/people/_heats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_heats.html.erb -------------------------------------------------------------------------------- /app/views/people/_heats_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_heats_table.html.erb -------------------------------------------------------------------------------- /app/views/people/_info_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_info_box.html.erb -------------------------------------------------------------------------------- /app/views/people/_judge_section.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_judge_section.html.erb -------------------------------------------------------------------------------- /app/views/people/_options.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_options.html.erb -------------------------------------------------------------------------------- /app/views/people/_package.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_package.html.erb -------------------------------------------------------------------------------- /app/views/people/_person.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_person.html.erb -------------------------------------------------------------------------------- /app/views/people/_person.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_person.json.jbuilder -------------------------------------------------------------------------------- /app/views/people/_questions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_questions.html.erb -------------------------------------------------------------------------------- /app/views/people/_scores.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_scores.html.erb -------------------------------------------------------------------------------- /app/views/people/_scores_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_scores_table.html.erb -------------------------------------------------------------------------------- /app/views/people/_solos_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_solos_table.html.erb -------------------------------------------------------------------------------- /app/views/people/_studio_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/_studio_list.html.erb -------------------------------------------------------------------------------- /app/views/people/back_numbers.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/back_numbers.html.erb -------------------------------------------------------------------------------- /app/views/people/backs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/backs.html.erb -------------------------------------------------------------------------------- /app/views/people/certificates.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/certificates.html.erb -------------------------------------------------------------------------------- /app/views/people/couples.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/couples.html.erb -------------------------------------------------------------------------------- /app/views/people/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/edit.html.erb -------------------------------------------------------------------------------- /app/views/people/entries.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/entries.html.erb -------------------------------------------------------------------------------- /app/views/people/heats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/heats.html.erb -------------------------------------------------------------------------------- /app/views/people/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/index.html.erb -------------------------------------------------------------------------------- /app/views/people/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/people/labels.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/labels.html.erb -------------------------------------------------------------------------------- /app/views/people/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/new.html.erb -------------------------------------------------------------------------------- /app/views/people/scores.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/scores.html.erb -------------------------------------------------------------------------------- /app/views/people/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/show.html.erb -------------------------------------------------------------------------------- /app/views/people/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/people/staff.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/people/staff.html.erb -------------------------------------------------------------------------------- /app/views/recordings/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/_form.html.erb -------------------------------------------------------------------------------- /app/views/recordings/_recording.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/_recording.html.erb -------------------------------------------------------------------------------- /app/views/recordings/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/edit.html.erb -------------------------------------------------------------------------------- /app/views/recordings/heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/heat.html.erb -------------------------------------------------------------------------------- /app/views/recordings/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/index.html.erb -------------------------------------------------------------------------------- /app/views/recordings/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/recordings/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/new.html.erb -------------------------------------------------------------------------------- /app/views/recordings/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/show.html.erb -------------------------------------------------------------------------------- /app/views/recordings/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/recordings/student.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/recordings/student.html.erb -------------------------------------------------------------------------------- /app/views/scores/_by_age.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_by_age.html.erb -------------------------------------------------------------------------------- /app/views/scores/_by_level.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_by_level.html.erb -------------------------------------------------------------------------------- /app/views/scores/_by_studio.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_by_studio.html.erb -------------------------------------------------------------------------------- /app/views/scores/_callbacks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_callbacks.html.erb -------------------------------------------------------------------------------- /app/views/scores/_cards_heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_cards_heat.html.erb -------------------------------------------------------------------------------- /app/views/scores/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_form.html.erb -------------------------------------------------------------------------------- /app/views/scores/_heat_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_heat_header.html.erb -------------------------------------------------------------------------------- /app/views/scores/_info_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_info_box.html.erb -------------------------------------------------------------------------------- /app/views/scores/_instructors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_instructors.html.erb -------------------------------------------------------------------------------- /app/views/scores/_last_update.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_last_update.html.erb -------------------------------------------------------------------------------- /app/views/scores/_multis.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_multis.html.erb -------------------------------------------------------------------------------- /app/views/scores/_pros.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_pros.html.erb -------------------------------------------------------------------------------- /app/views/scores/_rank_heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_rank_heat.html.erb -------------------------------------------------------------------------------- /app/views/scores/_score.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_score.html.erb -------------------------------------------------------------------------------- /app/views/scores/_score.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_score.json.jbuilder -------------------------------------------------------------------------------- /app/views/scores/_solo_heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_solo_heat.html.erb -------------------------------------------------------------------------------- /app/views/scores/_table_heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/_table_heat.html.erb -------------------------------------------------------------------------------- /app/views/scores/by_age.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/by_age.html.erb -------------------------------------------------------------------------------- /app/views/scores/by_level.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/by_level.html.erb -------------------------------------------------------------------------------- /app/views/scores/by_studio.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/by_studio.html.erb -------------------------------------------------------------------------------- /app/views/scores/callbacks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/callbacks.html.erb -------------------------------------------------------------------------------- /app/views/scores/comments.csv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/comments.csv.erb -------------------------------------------------------------------------------- /app/views/scores/comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/comments.html.erb -------------------------------------------------------------------------------- /app/views/scores/details/_by_age.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/details/_by_age.html.erb -------------------------------------------------------------------------------- /app/views/scores/details/_multis.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/details/_multis.html.erb -------------------------------------------------------------------------------- /app/views/scores/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/edit.html.erb -------------------------------------------------------------------------------- /app/views/scores/heat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/heat.html.erb -------------------------------------------------------------------------------- /app/views/scores/heatlist.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/heatlist.html.erb -------------------------------------------------------------------------------- /app/views/scores/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/index.html.erb -------------------------------------------------------------------------------- /app/views/scores/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/scores/instructor.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/instructor.html.erb -------------------------------------------------------------------------------- /app/views/scores/multis.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/multis.html.erb -------------------------------------------------------------------------------- /app/views/scores/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/new.html.erb -------------------------------------------------------------------------------- /app/views/scores/pros.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/pros.html.erb -------------------------------------------------------------------------------- /app/views/scores/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/show.html.erb -------------------------------------------------------------------------------- /app/views/scores/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/scores/skating.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/skating.html.erb -------------------------------------------------------------------------------- /app/views/scores/spa.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/spa.html.erb -------------------------------------------------------------------------------- /app/views/scores/unscored.csv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/unscored.csv.erb -------------------------------------------------------------------------------- /app/views/scores/unscored.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/scores/unscored.html.erb -------------------------------------------------------------------------------- /app/views/shared/_flash_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/shared/_flash_messages.html.erb -------------------------------------------------------------------------------- /app/views/shared/_root_info_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/shared/_root_info_box.html.erb -------------------------------------------------------------------------------- /app/views/showcases/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/_form.html.erb -------------------------------------------------------------------------------- /app/views/showcases/_showcase.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/_showcase.html.erb -------------------------------------------------------------------------------- /app/views/showcases/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/edit.html.erb -------------------------------------------------------------------------------- /app/views/showcases/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/index.html.erb -------------------------------------------------------------------------------- /app/views/showcases/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/showcases/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/new.html.erb -------------------------------------------------------------------------------- /app/views/showcases/new_request.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/new_request.html.erb -------------------------------------------------------------------------------- /app/views/showcases/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/show.html.erb -------------------------------------------------------------------------------- /app/views/showcases/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/showcases/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/solos/_cat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/_cat.html.erb -------------------------------------------------------------------------------- /app/views/solos/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/_form.html.erb -------------------------------------------------------------------------------- /app/views/solos/_offline_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/_offline_footer.html.erb -------------------------------------------------------------------------------- /app/views/solos/_offline_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/_offline_header.html.erb -------------------------------------------------------------------------------- /app/views/solos/_offline_readme.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/_offline_readme.text.erb -------------------------------------------------------------------------------- /app/views/solos/_solo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/_solo.html.erb -------------------------------------------------------------------------------- /app/views/solos/_solo.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/_solo.json.jbuilder -------------------------------------------------------------------------------- /app/views/solos/djlist.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/djlist.html.erb -------------------------------------------------------------------------------- /app/views/solos/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/edit.html.erb -------------------------------------------------------------------------------- /app/views/solos/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/index.html.erb -------------------------------------------------------------------------------- /app/views/solos/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/solos/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/new.html.erb -------------------------------------------------------------------------------- /app/views/solos/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/show.html.erb -------------------------------------------------------------------------------- /app/views/solos/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/solos/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/songs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/_form.html.erb -------------------------------------------------------------------------------- /app/views/songs/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/_list.html.erb -------------------------------------------------------------------------------- /app/views/songs/_song.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/_song.html.erb -------------------------------------------------------------------------------- /app/views/songs/_song.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/_song.json.jbuilder -------------------------------------------------------------------------------- /app/views/songs/dancelist.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/dancelist.html.erb -------------------------------------------------------------------------------- /app/views/songs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/edit.html.erb -------------------------------------------------------------------------------- /app/views/songs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/index.html.erb -------------------------------------------------------------------------------- /app/views/songs/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/songs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/new.html.erb -------------------------------------------------------------------------------- /app/views/songs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/show.html.erb -------------------------------------------------------------------------------- /app/views/songs/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/songs/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/studios/_entry.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/_entry.html.erb -------------------------------------------------------------------------------- /app/views/studios/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/_form.html.erb -------------------------------------------------------------------------------- /app/views/studios/_invoice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/_invoice.html.erb -------------------------------------------------------------------------------- /app/views/studios/_studio.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/_studio.html.erb -------------------------------------------------------------------------------- /app/views/studios/_studio.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/_studio.json.jbuilder -------------------------------------------------------------------------------- /app/views/studios/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/edit.html.erb -------------------------------------------------------------------------------- /app/views/studios/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/index.html.erb -------------------------------------------------------------------------------- /app/views/studios/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/studios/invoice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/invoice.html.erb -------------------------------------------------------------------------------- /app/views/studios/invoices.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/invoices.html.erb -------------------------------------------------------------------------------- /app/views/studios/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/new.html.erb -------------------------------------------------------------------------------- /app/views/studios/send_invoice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/send_invoice.html.erb -------------------------------------------------------------------------------- /app/views/studios/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/show.html.erb -------------------------------------------------------------------------------- /app/views/studios/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/studios/solos.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/studios/solos.html.erb -------------------------------------------------------------------------------- /app/views/tables/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/_form.html.erb -------------------------------------------------------------------------------- /app/views/tables/_studio_tables.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/_studio_tables.html.erb -------------------------------------------------------------------------------- /app/views/tables/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/_table.html.erb -------------------------------------------------------------------------------- /app/views/tables/_table.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/_table.json.jbuilder -------------------------------------------------------------------------------- /app/views/tables/arrange.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/arrange.html.erb -------------------------------------------------------------------------------- /app/views/tables/by_studio.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/by_studio.html.erb -------------------------------------------------------------------------------- /app/views/tables/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/edit.html.erb -------------------------------------------------------------------------------- /app/views/tables/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/index.html.erb -------------------------------------------------------------------------------- /app/views/tables/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/tables/list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/list.html.erb -------------------------------------------------------------------------------- /app/views/tables/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/new.html.erb -------------------------------------------------------------------------------- /app/views/tables/public.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/public.html.erb -------------------------------------------------------------------------------- /app/views/tables/qrcode.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/qrcode.html.erb -------------------------------------------------------------------------------- /app/views/tables/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/show.html.erb -------------------------------------------------------------------------------- /app/views/tables/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/tables/studio.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/tables/studio.html.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/_user.html.erb -------------------------------------------------------------------------------- /app/views/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/_user.json.jbuilder -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/request_reset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/request_reset.html.erb -------------------------------------------------------------------------------- /app/views/users/reset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/reset.html.erb -------------------------------------------------------------------------------- /app/views/users/reset_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/reset_email.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /app/views/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/app/views/users/show.json.jbuilder -------------------------------------------------------------------------------- /bin/apply-changes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/apply-changes.rb -------------------------------------------------------------------------------- /bin/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/backup -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/config-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/config-update -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/console -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/kamal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/kamal -------------------------------------------------------------------------------- /bin/log-heartbeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/log-heartbeat.sh -------------------------------------------------------------------------------- /bin/nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/nav -------------------------------------------------------------------------------- /bin/orphan-volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/orphan-volumes -------------------------------------------------------------------------------- /bin/populate_from_meal_counts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/populate_from_meal_counts.rb -------------------------------------------------------------------------------- /bin/prepare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/prepare.rb -------------------------------------------------------------------------------- /bin/prerender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/prerender -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rehome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/rehome -------------------------------------------------------------------------------- /bin/replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/replay -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/run -------------------------------------------------------------------------------- /bin/scan_semi_finals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/scan_semi_finals.rb -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/bin/setup -------------------------------------------------------------------------------- /cable/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cable/config.ru -------------------------------------------------------------------------------- /cf/worker/showcase/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/.editorconfig -------------------------------------------------------------------------------- /cf/worker/showcase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/.gitignore -------------------------------------------------------------------------------- /cf/worker/showcase/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/.prettierrc -------------------------------------------------------------------------------- /cf/worker/showcase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/README.md -------------------------------------------------------------------------------- /cf/worker/showcase/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/package-lock.json -------------------------------------------------------------------------------- /cf/worker/showcase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/package.json -------------------------------------------------------------------------------- /cf/worker/showcase/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/test/index.spec.js -------------------------------------------------------------------------------- /cf/worker/showcase/vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/vitest.config.js -------------------------------------------------------------------------------- /cf/worker/showcase/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/cf/worker/showcase/wrangler.toml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.iad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/deploy.iad.yml -------------------------------------------------------------------------------- /config/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/deploy.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/csv.rb: -------------------------------------------------------------------------------- 1 | require 'csv' 2 | -------------------------------------------------------------------------------- /config/initializers/demo_reset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/demo_reset.rb -------------------------------------------------------------------------------- /config/initializers/enable_yjit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/enable_yjit.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/sqlite_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/sqlite_config.rb -------------------------------------------------------------------------------- /config/initializers/xlsx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/initializers/xlsx.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/navigator-maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/navigator-maintenance.yml -------------------------------------------------------------------------------- /config/nginx.startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/nginx.startup -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/storage/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/storage/development.yml -------------------------------------------------------------------------------- /config/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/tailwind.config.js -------------------------------------------------------------------------------- /config/tenant/auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/tenant/auth.yml -------------------------------------------------------------------------------- /config/vector.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/config/vector.toml -------------------------------------------------------------------------------- /db/migrate/20220124133957_create_heats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/migrate/20220124133957_create_heats.rb -------------------------------------------------------------------------------- /db/migrate/20220206193836_create_ages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/migrate/20220206193836_create_ages.rb -------------------------------------------------------------------------------- /db/migrate/20220217003153_create_solos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/migrate/20220217003153_create_solos.rb -------------------------------------------------------------------------------- /db/migrate/20220604141131_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/migrate/20220604141131_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20231010012726_create_songs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/migrate/20231010012726_create_songs.rb -------------------------------------------------------------------------------- /db/migrate/20231115014415_sololevels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/migrate/20231115014415_sololevels.rb -------------------------------------------------------------------------------- /db/migrate/20240109224242_clearwater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/migrate/20240109224242_clearwater.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | require_relative 'seeds/generic.rb' -------------------------------------------------------------------------------- /db/seeds/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/seeds/generic.rb -------------------------------------------------------------------------------- /db/seeds/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/db/seeds/generic.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/vector-logging-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/docs/vector-logging-setup.md -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly.toml -------------------------------------------------------------------------------- /fly/applications/logger/.dockerignore: -------------------------------------------------------------------------------- 1 | logs 2 | node_modules 3 | .kamal 4 | -------------------------------------------------------------------------------- /fly/applications/logger/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | .kamal 3 | -------------------------------------------------------------------------------- /fly/applications/logger/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/Dockerfile -------------------------------------------------------------------------------- /fly/applications/logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/README.md -------------------------------------------------------------------------------- /fly/applications/logger/bin/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/bin/sync.ts -------------------------------------------------------------------------------- /fly/applications/logger/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/bun.lock -------------------------------------------------------------------------------- /fly/applications/logger/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/deploy.ts -------------------------------------------------------------------------------- /fly/applications/logger/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/deploy.yml -------------------------------------------------------------------------------- /fly/applications/logger/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/fly.toml -------------------------------------------------------------------------------- /fly/applications/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/index.ts -------------------------------------------------------------------------------- /fly/applications/logger/logfiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/logfiler.ts -------------------------------------------------------------------------------- /fly/applications/logger/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/monitor.ts -------------------------------------------------------------------------------- /fly/applications/logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/package.json -------------------------------------------------------------------------------- /fly/applications/logger/public/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/public/client.js -------------------------------------------------------------------------------- /fly/applications/logger/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/sentry.ts -------------------------------------------------------------------------------- /fly/applications/logger/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/server.ts -------------------------------------------------------------------------------- /fly/applications/logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/tsconfig.json -------------------------------------------------------------------------------- /fly/applications/logger/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/view.ts -------------------------------------------------------------------------------- /fly/applications/logger/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/logger/websocket.ts -------------------------------------------------------------------------------- /fly/applications/printer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/.dockerignore -------------------------------------------------------------------------------- /fly/applications/printer/.gitignore: -------------------------------------------------------------------------------- 1 | .kamal 2 | -------------------------------------------------------------------------------- /fly/applications/printer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/Dockerfile -------------------------------------------------------------------------------- /fly/applications/printer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/README.md -------------------------------------------------------------------------------- /fly/applications/printer/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/bun.lock -------------------------------------------------------------------------------- /fly/applications/printer/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/deploy.yml -------------------------------------------------------------------------------- /fly/applications/printer/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/fly.toml -------------------------------------------------------------------------------- /fly/applications/printer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/package.json -------------------------------------------------------------------------------- /fly/applications/printer/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/server.ts -------------------------------------------------------------------------------- /fly/applications/printer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/printer/tsconfig.json -------------------------------------------------------------------------------- /fly/applications/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/proxy/Dockerfile -------------------------------------------------------------------------------- /fly/applications/proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/proxy/README.md -------------------------------------------------------------------------------- /fly/applications/proxy/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/proxy/fly.toml -------------------------------------------------------------------------------- /fly/applications/proxy/go.mod: -------------------------------------------------------------------------------- 1 | module proxy 2 | 3 | go 1.23.6 4 | -------------------------------------------------------------------------------- /fly/applications/proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/proxy/main.go -------------------------------------------------------------------------------- /fly/applications/proxy/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/proxy/main_test.go -------------------------------------------------------------------------------- /fly/applications/proxy/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/proxy/middleware.go -------------------------------------------------------------------------------- /fly/applications/publish/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/fly/applications/publish/config.ru -------------------------------------------------------------------------------- /fly/applications/publish/public/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/go.sum -------------------------------------------------------------------------------- /legacy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/legacy.toml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/erb_prism_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/erb_prism_converter.rb -------------------------------------------------------------------------------- /lib/html_validator.rb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/html_validator.rb.bak -------------------------------------------------------------------------------- /lib/htpasswd_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/htpasswd_updater.rb -------------------------------------------------------------------------------- /lib/json_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/json_logger.rb -------------------------------------------------------------------------------- /lib/map_downloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/map_downloader.rb -------------------------------------------------------------------------------- /lib/navigator_config_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/navigator_config_generator.rb -------------------------------------------------------------------------------- /lib/prerender_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/prerender_configuration.rb -------------------------------------------------------------------------------- /lib/region_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/region_configuration.rb -------------------------------------------------------------------------------- /lib/showcase_date_sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/showcase_date_sync.rb -------------------------------------------------------------------------------- /lib/showcases_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/showcases_loader.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/assets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/tasks/assets.rake -------------------------------------------------------------------------------- /lib/tasks/cloudflare.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/tasks/cloudflare.rake -------------------------------------------------------------------------------- /lib/tasks/esbuild.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/tasks/esbuild.rake -------------------------------------------------------------------------------- /lib/tasks/eslint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/tasks/eslint.rake -------------------------------------------------------------------------------- /lib/tasks/mapper.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/tasks/mapper.rake -------------------------------------------------------------------------------- /lib/tasks/navigator.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/tasks/navigator.rake -------------------------------------------------------------------------------- /lib/tasks/prerender.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/lib/tasks/prerender.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nav.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/nav.log -------------------------------------------------------------------------------- /nav.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/nav.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/package.json -------------------------------------------------------------------------------- /plans/ACTION_CABLE_ON_DEMAND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/ACTION_CABLE_ON_DEMAND.md -------------------------------------------------------------------------------- /plans/ANYCABLE_MIGRATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/ANYCABLE_MIGRATION_PLAN.md -------------------------------------------------------------------------------- /plans/CUSTOM_WEBSOCKET_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/CUSTOM_WEBSOCKET_PLAN.md -------------------------------------------------------------------------------- /plans/CUSTOM_WEBSOCKET_PLAN_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/CUSTOM_WEBSOCKET_PLAN_V2.md -------------------------------------------------------------------------------- /plans/ERB_CONVERTER_INTEGRATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/ERB_CONVERTER_INTEGRATION_STATUS.md -------------------------------------------------------------------------------- /plans/ERB_PRISM_APPROACH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/ERB_PRISM_APPROACH.md -------------------------------------------------------------------------------- /plans/HEATLIST_JS_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/HEATLIST_JS_IMPLEMENTATION.md -------------------------------------------------------------------------------- /plans/HERB_AST_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/HERB_AST_STRUCTURE.md -------------------------------------------------------------------------------- /plans/HERB_EXPLORATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/HERB_EXPLORATION_SUMMARY.md -------------------------------------------------------------------------------- /plans/HERB_MIGRATION_PROPOSAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/HERB_MIGRATION_PROPOSAL.md -------------------------------------------------------------------------------- /plans/JSON_SIZE_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/JSON_SIZE_ANALYSIS.md -------------------------------------------------------------------------------- /plans/MAP_GENERATION_WITHOUT_GIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/MAP_GENERATION_WITHOUT_GIT.md -------------------------------------------------------------------------------- /plans/MEMORY_OPTIMIZATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/MEMORY_OPTIMIZATION_PLAN.md -------------------------------------------------------------------------------- /plans/NEXT_STEPS_ERB_STIMULUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/NEXT_STEPS_ERB_STIMULUS.md -------------------------------------------------------------------------------- /plans/OAUTH_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/OAUTH_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /plans/OFFLINE_SCORING_COMPLETION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/OFFLINE_SCORING_COMPLETION.md -------------------------------------------------------------------------------- /plans/PER_TENANT_OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/PER_TENANT_OPTIMIZATION.md -------------------------------------------------------------------------------- /plans/PHASE_7_MANUAL_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/PHASE_7_MANUAL_TESTING.md -------------------------------------------------------------------------------- /plans/PRISM_EXPLORATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/PRISM_EXPLORATION_SUMMARY.md -------------------------------------------------------------------------------- /plans/REMOVE_SHOWCASES_YML_FROM_GIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/REMOVE_SHOWCASES_YML_FROM_GIT.md -------------------------------------------------------------------------------- /plans/RUBY2JS_SHARED_LOGIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/RUBY2JS_SHARED_LOGIC.md -------------------------------------------------------------------------------- /plans/SLOT_NAVIGATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/SLOT_NAVIGATION.md -------------------------------------------------------------------------------- /plans/SPA_OFFLINE_SCORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/SPA_OFFLINE_SCORING.md -------------------------------------------------------------------------------- /plans/SPA_REFACTORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/SPA_REFACTORING.md -------------------------------------------------------------------------------- /plans/SPA_SYNC_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/SPA_SYNC_STRATEGY.md -------------------------------------------------------------------------------- /plans/SPA_TEST_MATRIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/SPA_TEST_MATRIX.md -------------------------------------------------------------------------------- /plans/STIMULUS_IMPLEMENTATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/STIMULUS_IMPLEMENTATION_STATUS.md -------------------------------------------------------------------------------- /plans/STUDENT_JUDGE_ASSIGNMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/STUDENT_JUDGE_ASSIGNMENT.md -------------------------------------------------------------------------------- /plans/analyze_student_assignments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/plans/analyze_student_assignments.rb -------------------------------------------------------------------------------- /public/403-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/403-index.html -------------------------------------------------------------------------------- /public/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/403.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/500.html -------------------------------------------------------------------------------- /public/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/503.html -------------------------------------------------------------------------------- /public/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/arthur-murray-logo-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/arthur-murray-logo-wide.png -------------------------------------------------------------------------------- /public/arthur-murray-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/arthur-murray-logo.gif -------------------------------------------------------------------------------- /public/candc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/candc.png -------------------------------------------------------------------------------- /public/carolina-dance-works.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/carolina-dance-works.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/Algerian Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/fonts/Algerian Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Berlin Sans FB Demi Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/fonts/Berlin Sans FB Demi Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Bevan-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/fonts/Bevan-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/Bevan-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/fonts/Bevan-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/fonts/readme.html -------------------------------------------------------------------------------- /public/fred-astaire-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/fred-astaire-logo.jpg -------------------------------------------------------------------------------- /public/intertwingly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/intertwingly.png -------------------------------------------------------------------------------- /public/mdballroom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/mdballroom.webp -------------------------------------------------------------------------------- /public/nashville.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/nashville.jpg -------------------------------------------------------------------------------- /public/ras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/ras.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/public/service-worker.js -------------------------------------------------------------------------------- /public/up: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /run_websocket_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/run_websocket_test.sh -------------------------------------------------------------------------------- /script/config-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/config-update -------------------------------------------------------------------------------- /script/erb_prism_converter_prototype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/erb_prism_converter_prototype.rb -------------------------------------------------------------------------------- /script/explore_erb_compilation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/explore_erb_compilation.rb -------------------------------------------------------------------------------- /script/explore_herb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/explore_herb.rb -------------------------------------------------------------------------------- /script/explore_herb_detailed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/explore_herb_detailed.rb -------------------------------------------------------------------------------- /script/explore_prism.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/explore_prism.rb -------------------------------------------------------------------------------- /script/generate_and_upload_maps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/generate_and_upload_maps.rb -------------------------------------------------------------------------------- /script/generate_navigator_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/generate_navigator_config.rb -------------------------------------------------------------------------------- /script/hook_app_idle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/hook_app_idle.sh -------------------------------------------------------------------------------- /script/hook_navigator_idle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/hook_navigator_idle.sh -------------------------------------------------------------------------------- /script/hook_navigator_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/hook_navigator_start.sh -------------------------------------------------------------------------------- /script/import_compmngr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/import_compmngr.rb -------------------------------------------------------------------------------- /script/import_entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/import_entries -------------------------------------------------------------------------------- /script/nav_initialization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/nav_initialization.rb -------------------------------------------------------------------------------- /script/orphan_databases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/orphan_databases.rb -------------------------------------------------------------------------------- /script/prism_to_js_prototype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/prism_to_js_prototype.rb -------------------------------------------------------------------------------- /script/ready.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/ready.sh -------------------------------------------------------------------------------- /script/reassign_all_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/reassign_all_tables.rb -------------------------------------------------------------------------------- /script/s3-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/s3-check.js -------------------------------------------------------------------------------- /script/s3-check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/s3-check.rb -------------------------------------------------------------------------------- /script/s3-download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/s3-download.rb -------------------------------------------------------------------------------- /script/s3-upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/s3-upload.rb -------------------------------------------------------------------------------- /script/sync_databases_s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/sync_databases_s3.rb -------------------------------------------------------------------------------- /script/test_herb_complex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/test_herb_complex.rb -------------------------------------------------------------------------------- /script/test_websocket_stress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/test_websocket_stress.rb -------------------------------------------------------------------------------- /script/update_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/update_configuration.rb -------------------------------------------------------------------------------- /script/update_htpasswd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/update_htpasswd.rb -------------------------------------------------------------------------------- /script/update_meals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/update_meals.rb -------------------------------------------------------------------------------- /script/zap-password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/zap-password -------------------------------------------------------------------------------- /script/zones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/script/zones.rb -------------------------------------------------------------------------------- /scripts/hydrate_heats.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/scripts/hydrate_heats.mjs -------------------------------------------------------------------------------- /scripts/render_erb_and_js.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/scripts/render_erb_and_js.rb -------------------------------------------------------------------------------- /scripts/render_js_template.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/scripts/render_js_template.mjs -------------------------------------------------------------------------------- /scripts/render_js_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/scripts/render_js_template.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/scores_channel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/channels/scores_channel_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/admin_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/admin_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/docs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/docs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/event_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/event_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/heats_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/heats_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/score_storage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/score_storage_test.rb -------------------------------------------------------------------------------- /test/controllers/solos_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/solos_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/songs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/songs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/action_text/rich_texts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/action_text/rich_texts.yml -------------------------------------------------------------------------------- /test/fixtures/age_costs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/age_costs.yml -------------------------------------------------------------------------------- /test/fixtures/ages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/ages.yml -------------------------------------------------------------------------------- /test/fixtures/answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/answers.yml -------------------------------------------------------------------------------- /test/fixtures/billables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/billables.yml -------------------------------------------------------------------------------- /test/fixtures/cat_extensions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/cat_extensions.yml -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/dances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/dances.yml -------------------------------------------------------------------------------- /test/fixtures/entries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/entries.yml -------------------------------------------------------------------------------- /test/fixtures/events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/events.yml -------------------------------------------------------------------------------- /test/fixtures/feedbacks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/feedbacks.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/deployed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/files/deployed.json -------------------------------------------------------------------------------- /test/fixtures/files/regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/files/regions.json -------------------------------------------------------------------------------- /test/fixtures/formations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/formations.yml -------------------------------------------------------------------------------- /test/fixtures/heats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/heats.yml -------------------------------------------------------------------------------- /test/fixtures/judges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/judges.yml -------------------------------------------------------------------------------- /test/fixtures/levels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/levels.yml -------------------------------------------------------------------------------- /test/fixtures/locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/locations.yml -------------------------------------------------------------------------------- /test/fixtures/multi_levels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/multi_levels.yml -------------------------------------------------------------------------------- /test/fixtures/multis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/multis.yml -------------------------------------------------------------------------------- /test/fixtures/package_includes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/package_includes.yml -------------------------------------------------------------------------------- /test/fixtures/payments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/payments.yml -------------------------------------------------------------------------------- /test/fixtures/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/people.yml -------------------------------------------------------------------------------- /test/fixtures/person_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/person_options.yml -------------------------------------------------------------------------------- /test/fixtures/questions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/questions.yml -------------------------------------------------------------------------------- /test/fixtures/recordings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/recordings.yml -------------------------------------------------------------------------------- /test/fixtures/regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/regions.yml -------------------------------------------------------------------------------- /test/fixtures/scores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/scores.yml -------------------------------------------------------------------------------- /test/fixtures/showcases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/showcases.yml -------------------------------------------------------------------------------- /test/fixtures/solos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/solos.yml -------------------------------------------------------------------------------- /test/fixtures/songs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/songs.yml -------------------------------------------------------------------------------- /test/fixtures/studio_pairs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/studio_pairs.yml -------------------------------------------------------------------------------- /test/fixtures/studios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/studios.yml -------------------------------------------------------------------------------- /test/fixtures/tables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/tables.yml -------------------------------------------------------------------------------- /test/fixtures/test_data.csv: -------------------------------------------------------------------------------- 1 | name,category,level 2 | John Doe,Standard,Bronze 3 | Jane Smith,Latin,Silver -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/application_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/helpers/application_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/dance_limits_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/helpers/dance_limits_helper_test.rb -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/javascript/heat_data_manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/javascript/heat_data_manager.test.js -------------------------------------------------------------------------------- /test/javascript/navigation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/javascript/navigation.test.js -------------------------------------------------------------------------------- /test/javascript/score_data_helper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/javascript/score_data_helper.test.js -------------------------------------------------------------------------------- /test/javascript/score_posting.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/javascript/score_posting.test.js -------------------------------------------------------------------------------- /test/javascript/semi_finals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/javascript/semi_finals.test.js -------------------------------------------------------------------------------- /test/javascript/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/javascript/setup.js -------------------------------------------------------------------------------- /test/javascript/start_button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/javascript/start_button.test.js -------------------------------------------------------------------------------- /test/jobs/command_execution_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/jobs/command_execution_job_test.rb -------------------------------------------------------------------------------- /test/jobs/offline_playlist_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/jobs/offline_playlist_job_test.rb -------------------------------------------------------------------------------- /test/jobs/send_invoice_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/jobs/send_invoice_job_test.rb -------------------------------------------------------------------------------- /test/lib/erb_prism_converter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/lib/erb_prism_converter_test.rb -------------------------------------------------------------------------------- /test/lib/map_downloader_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/lib/map_downloader_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/age_cost_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/age_cost_test.rb -------------------------------------------------------------------------------- /test/models/age_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/age_test.rb -------------------------------------------------------------------------------- /test/models/answer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/answer_test.rb -------------------------------------------------------------------------------- /test/models/application_record_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/application_record_test.rb -------------------------------------------------------------------------------- /test/models/billable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/billable_test.rb -------------------------------------------------------------------------------- /test/models/cat_extension_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/cat_extension_test.rb -------------------------------------------------------------------------------- /test/models/category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/category_test.rb -------------------------------------------------------------------------------- /test/models/dance_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/dance_test.rb -------------------------------------------------------------------------------- /test/models/entry_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/entry_test.rb -------------------------------------------------------------------------------- /test/models/event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/event_test.rb -------------------------------------------------------------------------------- /test/models/feedback_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/feedback_test.rb -------------------------------------------------------------------------------- /test/models/formation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/formation_test.rb -------------------------------------------------------------------------------- /test/models/heat_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/heat_test.rb -------------------------------------------------------------------------------- /test/models/judge_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/judge_test.rb -------------------------------------------------------------------------------- /test/models/level_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/level_test.rb -------------------------------------------------------------------------------- /test/models/locale_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/locale_test.rb -------------------------------------------------------------------------------- /test/models/location_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/location_test.rb -------------------------------------------------------------------------------- /test/models/multi_level_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/multi_level_test.rb -------------------------------------------------------------------------------- /test/models/multi_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/multi_test.rb -------------------------------------------------------------------------------- /test/models/package_include_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/package_include_test.rb -------------------------------------------------------------------------------- /test/models/payment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/payment_test.rb -------------------------------------------------------------------------------- /test/models/person_option_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/person_option_test.rb -------------------------------------------------------------------------------- /test/models/person_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/person_test.rb -------------------------------------------------------------------------------- /test/models/question_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/question_test.rb -------------------------------------------------------------------------------- /test/models/recording_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/recording_test.rb -------------------------------------------------------------------------------- /test/models/region_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/region_test.rb -------------------------------------------------------------------------------- /test/models/score_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/score_test.rb -------------------------------------------------------------------------------- /test/models/showcase_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/showcase_test.rb -------------------------------------------------------------------------------- /test/models/solo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/solo_test.rb -------------------------------------------------------------------------------- /test/models/song_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/song_test.rb -------------------------------------------------------------------------------- /test/models/studio_pair_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/studio_pair_test.rb -------------------------------------------------------------------------------- /test/models/studio_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/studio_test.rb -------------------------------------------------------------------------------- /test/models/table_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/table_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/billables_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/billables_test.rb -------------------------------------------------------------------------------- /test/system/categories_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/categories_test.rb -------------------------------------------------------------------------------- /test/system/dances_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/dances_test.rb -------------------------------------------------------------------------------- /test/system/entries_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/entries_test.rb -------------------------------------------------------------------------------- /test/system/feedbacks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/feedbacks_test.rb -------------------------------------------------------------------------------- /test/system/formations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/formations_test.rb -------------------------------------------------------------------------------- /test/system/heats_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/heats_test.rb -------------------------------------------------------------------------------- /test/system/locale_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/locale_test.rb -------------------------------------------------------------------------------- /test/system/locations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/locations_test.rb -------------------------------------------------------------------------------- /test/system/multis_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/multis_test.rb -------------------------------------------------------------------------------- /test/system/payments_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/payments_test.rb -------------------------------------------------------------------------------- /test/system/people_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/people_test.rb -------------------------------------------------------------------------------- /test/system/questions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/questions_test.rb -------------------------------------------------------------------------------- /test/system/recordings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/recordings_test.rb -------------------------------------------------------------------------------- /test/system/scores_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/scores_test.rb -------------------------------------------------------------------------------- /test/system/showcases_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/showcases_test.rb -------------------------------------------------------------------------------- /test/system/solos_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/solos_test.rb -------------------------------------------------------------------------------- /test/system/songs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/songs_test.rb -------------------------------------------------------------------------------- /test/system/studios_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/studios_test.rb -------------------------------------------------------------------------------- /test/system/tables_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/tables_test.rb -------------------------------------------------------------------------------- /test/system/users_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/system/users_test.rb -------------------------------------------------------------------------------- /test/tasks/prerender_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/tasks/prerender_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/views/studios/invoice_view_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test/views/studios/invoice_view_test.rb -------------------------------------------------------------------------------- /test_websocket_gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test_websocket_gemfile -------------------------------------------------------------------------------- /test_websocket_gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/test_websocket_gemfile.lock -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/mapper/files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/utils/mapper/files.yml -------------------------------------------------------------------------------- /utils/mapper/makemaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/utils/mapper/makemaps.js -------------------------------------------------------------------------------- /utils/mapper/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/utils/mapper/package-lock.json -------------------------------------------------------------------------------- /utils/mapper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/utils/mapper/package.json -------------------------------------------------------------------------------- /vendor/javascript/@xterm--xterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/vendor/javascript/@xterm--xterm.js -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubys/showcase/HEAD/vitest.config.js --------------------------------------------------------------------------------