From 022412f1b2707542be18e0a97eafa340a32d3aaa Mon Sep 17 00:00:00 2001 From: Ricardo Piro-Rael Date: Tue, 27 Sep 2016 14:08:30 -0600 Subject: [PATCH] Revert "Updated ERD" --- .gitignore | 3 - Team-Manager/.gitignore | 21 --- Team-Manager/Gemfile | 48 ----- Team-Manager/Gemfile.lock | 175 ------------------ Team-Manager/README.md | 24 --- Team-Manager/Rakefile | 6 - Team-Manager/app/assets/config/manifest.js | 3 - Team-Manager/app/assets/images/.keep | 0 .../app/assets/javascripts/application.js | 16 -- Team-Manager/app/assets/javascripts/cable.js | 13 -- .../assets/javascripts/certifications.coffee | 3 - .../app/assets/javascripts/channels/.keep | 0 .../app/assets/javascripts/coaches.coffee | 3 - .../app/assets/javascripts/emails.coffee | 3 - .../javascripts/event_property_maps.coffee | 3 - .../app/assets/javascripts/event_types.coffee | 3 - .../app/assets/javascripts/events.coffee | 3 - .../javascripts/organization_teams.coffee | 3 - .../assets/javascripts/organizations.coffee | 3 - .../assets/javascripts/parent_children.coffee | 3 - .../app/assets/javascripts/people.coffee | 3 - .../assets/javascripts/phone_numbers.coffee | 3 - .../javascripts/player_statistics.coffee | 3 - .../app/assets/javascripts/players.coffee | 3 - .../app/assets/javascripts/team_people.coffee | 3 - .../app/assets/javascripts/teams.coffee | 3 - .../app/assets/stylesheets/application.css | 15 -- .../assets/stylesheets/certifications.scss | 3 - .../app/assets/stylesheets/coaches.scss | 3 - .../app/assets/stylesheets/emails.scss | 3 - .../stylesheets/event_property_maps.scss | 3 - .../app/assets/stylesheets/event_types.scss | 3 - .../app/assets/stylesheets/events.scss | 3 - .../stylesheets/organization_teams.scss | 3 - .../app/assets/stylesheets/organizations.scss | 3 - .../assets/stylesheets/parent_children.scss | 3 - .../app/assets/stylesheets/people.scss | 3 - .../app/assets/stylesheets/phone_numbers.scss | 3 - .../assets/stylesheets/player_statistics.scss | 3 - .../app/assets/stylesheets/players.scss | 3 - .../app/assets/stylesheets/scaffolds.scss | 89 --------- .../app/assets/stylesheets/team_people.scss | 3 - .../app/assets/stylesheets/teams.scss | 3 - .../app/channels/application_cable/channel.rb | 4 - .../channels/application_cable/connection.rb | 4 - .../app/controllers/application_controller.rb | 3 - .../controllers/certifications_controller.rb | 74 -------- .../app/controllers/coaches_controller.rb | 74 -------- Team-Manager/app/controllers/concerns/.keep | 0 .../app/controllers/emails_controller.rb | 74 -------- .../event_property_maps_controller.rb | 74 -------- .../app/controllers/event_types_controller.rb | 74 -------- .../app/controllers/events_controller.rb | 74 -------- .../organization_teams_controller.rb | 74 -------- .../controllers/organizations_controller.rb | 74 -------- .../controllers/parent_children_controller.rb | 74 -------- .../app/controllers/people_controller.rb | 74 -------- .../controllers/phone_numbers_controller.rb | 74 -------- .../player_statistics_controller.rb | 74 -------- .../app/controllers/players_controller.rb | 74 -------- .../app/controllers/team_people_controller.rb | 74 -------- .../app/controllers/teams_controller.rb | 74 -------- .../app/helpers/application_helper.rb | 2 - .../app/helpers/certifications_helper.rb | 2 - Team-Manager/app/helpers/coaches_helper.rb | 2 - Team-Manager/app/helpers/emails_helper.rb | 2 - .../app/helpers/event_property_maps_helper.rb | 2 - .../app/helpers/event_types_helper.rb | 2 - Team-Manager/app/helpers/events_helper.rb | 2 - .../app/helpers/organization_teams_helper.rb | 2 - .../app/helpers/organizations_helper.rb | 2 - .../app/helpers/parent_children_helper.rb | 2 - Team-Manager/app/helpers/people_helper.rb | 2 - .../app/helpers/phone_numbers_helper.rb | 2 - .../app/helpers/player_statistics_helper.rb | 2 - Team-Manager/app/helpers/players_helper.rb | 2 - .../app/helpers/team_people_helper.rb | 2 - Team-Manager/app/helpers/teams_helper.rb | 2 - Team-Manager/app/jobs/application_job.rb | 2 - .../app/mailers/application_mailer.rb | 4 - Team-Manager/app/models/application_record.rb | 3 - Team-Manager/app/models/certification.rb | 3 - Team-Manager/app/models/coach.rb | 3 - Team-Manager/app/models/concerns/.keep | 0 Team-Manager/app/models/email.rb | 3 - Team-Manager/app/models/event.rb | 4 - Team-Manager/app/models/event_property_map.rb | 3 - Team-Manager/app/models/event_type.rb | 2 - Team-Manager/app/models/organization.rb | 2 - Team-Manager/app/models/organization_team.rb | 4 - Team-Manager/app/models/parent_child.rb | 4 - Team-Manager/app/models/person.rb | 4 - Team-Manager/app/models/phone_number.rb | 3 - Team-Manager/app/models/player.rb | 3 - Team-Manager/app/models/player_statistic.rb | 3 - Team-Manager/app/models/team.rb | 2 - Team-Manager/app/models/team_person.rb | 4 - .../_certification.json.jbuilder | 2 - .../app/views/certifications/_form.html.erb | 37 ---- .../app/views/certifications/edit.html.erb | 6 - .../app/views/certifications/index.html.erb | 33 ---- .../views/certifications/index.json.jbuilder | 1 - .../app/views/certifications/new.html.erb | 5 - .../app/views/certifications/show.html.erb | 24 --- .../views/certifications/show.json.jbuilder | 1 - .../app/views/coaches/_coach.json.jbuilder | 2 - Team-Manager/app/views/coaches/_form.html.erb | 42 ----- Team-Manager/app/views/coaches/edit.html.erb | 6 - Team-Manager/app/views/coaches/index.html.erb | 35 ---- .../app/views/coaches/index.json.jbuilder | 1 - Team-Manager/app/views/coaches/new.html.erb | 5 - Team-Manager/app/views/coaches/show.html.erb | 29 --- .../app/views/coaches/show.json.jbuilder | 1 - .../app/views/emails/_email.json.jbuilder | 2 - Team-Manager/app/views/emails/_form.html.erb | 27 --- Team-Manager/app/views/emails/edit.html.erb | 6 - Team-Manager/app/views/emails/index.html.erb | 29 --- .../app/views/emails/index.json.jbuilder | 1 - Team-Manager/app/views/emails/new.html.erb | 5 - Team-Manager/app/views/emails/show.html.erb | 14 -- .../app/views/emails/show.json.jbuilder | 1 - .../_event_property_map.json.jbuilder | 2 - .../views/event_property_maps/_form.html.erb | 32 ---- .../views/event_property_maps/edit.html.erb | 6 - .../views/event_property_maps/index.html.erb | 31 ---- .../event_property_maps/index.json.jbuilder | 1 - .../views/event_property_maps/new.html.erb | 5 - .../views/event_property_maps/show.html.erb | 19 -- .../event_property_maps/show.json.jbuilder | 1 - .../event_types/_event_type.json.jbuilder | 2 - .../app/views/event_types/_form.html.erb | 27 --- .../app/views/event_types/edit.html.erb | 6 - .../app/views/event_types/index.html.erb | 29 --- .../app/views/event_types/index.json.jbuilder | 1 - .../app/views/event_types/new.html.erb | 5 - .../app/views/event_types/show.html.erb | 14 -- .../app/views/event_types/show.json.jbuilder | 1 - .../app/views/events/_event.json.jbuilder | 2 - Team-Manager/app/views/events/_form.html.erb | 47 ----- Team-Manager/app/views/events/edit.html.erb | 6 - Team-Manager/app/views/events/index.html.erb | 37 ---- .../app/views/events/index.json.jbuilder | 1 - Team-Manager/app/views/events/new.html.erb | 5 - Team-Manager/app/views/events/show.html.erb | 34 ---- .../app/views/events/show.json.jbuilder | 1 - .../app/views/layouts/application.html.erb | 14 -- .../app/views/layouts/mailer.html.erb | 13 -- .../app/views/layouts/mailer.text.erb | 1 - .../views/organization_teams/_form.html.erb | 27 --- .../_organization_team.json.jbuilder | 2 - .../views/organization_teams/edit.html.erb | 6 - .../views/organization_teams/index.html.erb | 29 --- .../organization_teams/index.json.jbuilder | 1 - .../app/views/organization_teams/new.html.erb | 5 - .../views/organization_teams/show.html.erb | 14 -- .../organization_teams/show.json.jbuilder | 1 - .../app/views/organizations/_form.html.erb | 27 --- .../organizations/_organization.json.jbuilder | 2 - .../app/views/organizations/edit.html.erb | 6 - .../app/views/organizations/index.html.erb | 29 --- .../views/organizations/index.json.jbuilder | 1 - .../app/views/organizations/new.html.erb | 5 - .../app/views/organizations/show.html.erb | 14 -- .../views/organizations/show.json.jbuilder | 1 - .../app/views/parent_children/_form.html.erb | 27 --- .../_parent_child.json.jbuilder | 2 - .../app/views/parent_children/edit.html.erb | 6 - .../app/views/parent_children/index.html.erb | 29 --- .../views/parent_children/index.json.jbuilder | 1 - .../app/views/parent_children/new.html.erb | 5 - .../app/views/parent_children/show.html.erb | 14 -- .../views/parent_children/show.json.jbuilder | 1 - Team-Manager/app/views/people/_form.html.erb | 92 --------- .../app/views/people/_person.json.jbuilder | 2 - Team-Manager/app/views/people/edit.html.erb | 6 - Team-Manager/app/views/people/index.html.erb | 55 ------ .../app/views/people/index.json.jbuilder | 1 - Team-Manager/app/views/people/new.html.erb | 5 - Team-Manager/app/views/people/show.html.erb | 79 -------- .../app/views/people/show.json.jbuilder | 1 - .../app/views/phone_numbers/_form.html.erb | 27 --- .../phone_numbers/_phone_number.json.jbuilder | 2 - .../app/views/phone_numbers/edit.html.erb | 6 - .../app/views/phone_numbers/index.html.erb | 29 --- .../views/phone_numbers/index.json.jbuilder | 1 - .../app/views/phone_numbers/new.html.erb | 5 - .../app/views/phone_numbers/show.html.erb | 14 -- .../views/phone_numbers/show.json.jbuilder | 1 - .../views/player_statistics/_form.html.erb | 42 ----- .../_player_statistic.json.jbuilder | 2 - .../app/views/player_statistics/edit.html.erb | 6 - .../views/player_statistics/index.html.erb | 35 ---- .../player_statistics/index.json.jbuilder | 1 - .../app/views/player_statistics/new.html.erb | 5 - .../app/views/player_statistics/show.html.erb | 29 --- .../player_statistics/show.json.jbuilder | 1 - Team-Manager/app/views/players/_form.html.erb | 37 ---- .../app/views/players/_player.json.jbuilder | 2 - Team-Manager/app/views/players/edit.html.erb | 6 - Team-Manager/app/views/players/index.html.erb | 33 ---- .../app/views/players/index.json.jbuilder | 1 - Team-Manager/app/views/players/new.html.erb | 5 - Team-Manager/app/views/players/show.html.erb | 24 --- .../app/views/players/show.json.jbuilder | 1 - .../app/views/team_people/_form.html.erb | 27 --- .../team_people/_team_person.json.jbuilder | 2 - .../app/views/team_people/edit.html.erb | 6 - .../app/views/team_people/index.html.erb | 29 --- .../app/views/team_people/index.json.jbuilder | 1 - .../app/views/team_people/new.html.erb | 5 - .../app/views/team_people/show.html.erb | 14 -- .../app/views/team_people/show.json.jbuilder | 1 - Team-Manager/app/views/teams/_form.html.erb | 42 ----- .../app/views/teams/_team.json.jbuilder | 2 - Team-Manager/app/views/teams/edit.html.erb | 6 - Team-Manager/app/views/teams/index.html.erb | 35 ---- .../app/views/teams/index.json.jbuilder | 1 - Team-Manager/app/views/teams/new.html.erb | 5 - Team-Manager/app/views/teams/show.html.erb | 29 --- .../app/views/teams/show.json.jbuilder | 1 - Team-Manager/bin/bundle | 3 - Team-Manager/bin/rails | 9 - Team-Manager/bin/rake | 9 - Team-Manager/bin/setup | 34 ---- Team-Manager/bin/spring | 15 -- Team-Manager/bin/update | 29 --- Team-Manager/config.ru | 5 - Team-Manager/config/application.rb | 15 -- Team-Manager/config/boot.rb | 3 - Team-Manager/config/cable.yml | 9 - Team-Manager/config/database.yml | 25 --- Team-Manager/config/environment.rb | 5 - .../config/environments/development.rb | 54 ------ .../config/environments/production.rb | 86 --------- Team-Manager/config/environments/test.rb | 42 ----- .../application_controller_renderer.rb | 6 - Team-Manager/config/initializers/assets.rb | 11 -- .../initializers/backtrace_silencers.rb | 7 - .../config/initializers/cookies_serializer.rb | 5 - .../initializers/filter_parameter_logging.rb | 4 - .../config/initializers/inflections.rb | 16 -- .../config/initializers/mime_types.rb | 4 - .../initializers/new_framework_defaults.rb | 24 --- .../config/initializers/session_store.rb | 3 - .../config/initializers/wrap_parameters.rb | 14 -- Team-Manager/config/locales/en.yml | 23 --- Team-Manager/config/puma.rb | 47 ----- Team-Manager/config/routes.rb | 18 -- Team-Manager/config/secrets.yml | 22 --- Team-Manager/config/spring.rb | 6 - .../migrate/20160926050909_create_people.rb | 22 --- .../20160926051852_create_phone_numbers.rb | 10 - .../migrate/20160926051936_create_emails.rb | 10 - .../20160926053714_create_phone_numbers.rb | 10 - .../migrate/20160926053723_create_emails.rb | 10 - .../20160926053732_create_team_people.rb | 10 - .../migrate/20160926053806_create_people.rb | 23 --- .../migrate/20160926053858_create_players.rb | 12 -- .../migrate/20160927021433_create_coaches.rb | 13 -- ...20160927021915_create_player_statistics.rb | 13 -- .../db/migrate/20160927022930_create_teams.rb | 13 -- .../migrate/20160927023204_create_people.rb | 24 --- ...0160927023500_create_organization_teams.rb | 10 - .../20160927023816_create_organizations.rb | 10 - .../migrate/20160927024414_create_events.rb | 14 -- .../20160927024645_create_event_types.rb | 10 - ...160927024802_create_event_property_maps.rb | 11 -- .../20160927025028_create_parent_children.rb | 10 - .../20160927025116_create_certifications.rb | 12 -- .../20160927030105_create_certifications.rb | 12 -- .../migrate/20160927032106_create_people.rb | 23 --- .../migrate/20160927034853_create_emails.rb | 10 - .../20160927035528_create_phone_numbers.rb | 10 - Team-Manager/db/schema.rb | 166 ----------------- Team-Manager/db/seeds.rb | 7 - Team-Manager/lib/assets/.keep | 0 Team-Manager/lib/tasks/.keep | 0 Team-Manager/log/.keep | 0 Team-Manager/public/404.html | 67 ------- Team-Manager/public/422.html | 67 ------- Team-Manager/public/500.html | 66 ------- .../public/apple-touch-icon-precomposed.png | 0 Team-Manager/public/apple-touch-icon.png | 0 Team-Manager/public/favicon.ico | 0 Team-Manager/public/robots.txt | 5 - Team-Manager/test/controllers/.keep | 0 .../certifications_controller_test.rb | 48 ----- .../controllers/coaches_controller_test.rb | 48 ----- .../controllers/emails_controller_test.rb | 48 ----- .../event_property_maps_controller_test.rb | 48 ----- .../event_types_controller_test.rb | 48 ----- .../controllers/events_controller_test.rb | 48 ----- .../organization_teams_controller_test.rb | 48 ----- .../organizations_controller_test.rb | 48 ----- .../parent_children_controller_test.rb | 48 ----- .../controllers/people_controller_test.rb | 48 ----- .../phone_numbers_controller_test.rb | 48 ----- .../player_statistics_controller_test.rb | 48 ----- .../controllers/players_controller_test.rb | 48 ----- .../team_people_controller_test.rb | 48 ----- .../test/controllers/teams_controller_test.rb | 48 ----- Team-Manager/test/fixtures/.keep | 0 Team-Manager/test/fixtures/certifications.yml | 13 -- Team-Manager/test/fixtures/coaches.yml | 15 -- Team-Manager/test/fixtures/emails.yml | 9 - .../test/fixtures/event_property_maps.yml | 11 -- Team-Manager/test/fixtures/event_types.yml | 9 - Team-Manager/test/fixtures/events.yml | 17 -- Team-Manager/test/fixtures/files/.keep | 0 .../test/fixtures/organization_teams.yml | 9 - Team-Manager/test/fixtures/organizations.yml | 9 - .../test/fixtures/parent_children.yml | 9 - Team-Manager/test/fixtures/people.yml | 35 ---- Team-Manager/test/fixtures/phone_numbers.yml | 9 - .../test/fixtures/player_statistics.yml | 15 -- Team-Manager/test/fixtures/players.yml | 13 -- Team-Manager/test/fixtures/team_people.yml | 9 - Team-Manager/test/fixtures/teams.yml | 15 -- Team-Manager/test/helpers/.keep | 0 Team-Manager/test/integration/.keep | 0 Team-Manager/test/mailers/.keep | 0 Team-Manager/test/models/.keep | 0 .../test/models/certification_test.rb | 7 - Team-Manager/test/models/coach_test.rb | 7 - Team-Manager/test/models/email_test.rb | 7 - .../test/models/event_property_map_test.rb | 7 - Team-Manager/test/models/event_test.rb | 7 - Team-Manager/test/models/event_type_test.rb | 7 - .../test/models/organization_team_test.rb | 7 - Team-Manager/test/models/organization_test.rb | 7 - Team-Manager/test/models/parent_child_test.rb | 7 - Team-Manager/test/models/person_test.rb | 7 - Team-Manager/test/models/phone_number_test.rb | 7 - .../test/models/player_statistic_test.rb | 7 - Team-Manager/test/models/player_test.rb | 7 - Team-Manager/test/models/team_person_test.rb | 7 - Team-Manager/test/models/team_test.rb | 7 - Team-Manager/test/test_helper.rb | 10 - Team-Manager/tmp/.keep | 0 Team-Manager/vendor/assets/javascripts/.keep | 0 Team-Manager/vendor/assets/stylesheets/.keep | 0 artifacts/sports_org_erd_v2.mwb | Bin 20815 -> 0 bytes artifacts/sports_org_erd_v3.mwb | Bin 20389 -> 0 bytes artifacts/sports_org_erd_v4.mwb | Bin 23200 -> 0 bytes artifacts/sports_org_erd_v5.mwb | Bin 22959 -> 0 bytes artifacts/sports_org_erd_v5.mwb.bak | Bin 22947 -> 0 bytes generating_script | 33 ---- 347 files changed, 5685 deletions(-) delete mode 100644 Team-Manager/.gitignore delete mode 100644 Team-Manager/Gemfile delete mode 100644 Team-Manager/Gemfile.lock delete mode 100644 Team-Manager/README.md delete mode 100644 Team-Manager/Rakefile delete mode 100644 Team-Manager/app/assets/config/manifest.js delete mode 100644 Team-Manager/app/assets/images/.keep delete mode 100644 Team-Manager/app/assets/javascripts/application.js delete mode 100644 Team-Manager/app/assets/javascripts/cable.js delete mode 100644 Team-Manager/app/assets/javascripts/certifications.coffee delete mode 100644 Team-Manager/app/assets/javascripts/channels/.keep delete mode 100644 Team-Manager/app/assets/javascripts/coaches.coffee delete mode 100644 Team-Manager/app/assets/javascripts/emails.coffee delete mode 100644 Team-Manager/app/assets/javascripts/event_property_maps.coffee delete mode 100644 Team-Manager/app/assets/javascripts/event_types.coffee delete mode 100644 Team-Manager/app/assets/javascripts/events.coffee delete mode 100644 Team-Manager/app/assets/javascripts/organization_teams.coffee delete mode 100644 Team-Manager/app/assets/javascripts/organizations.coffee delete mode 100644 Team-Manager/app/assets/javascripts/parent_children.coffee delete mode 100644 Team-Manager/app/assets/javascripts/people.coffee delete mode 100644 Team-Manager/app/assets/javascripts/phone_numbers.coffee delete mode 100644 Team-Manager/app/assets/javascripts/player_statistics.coffee delete mode 100644 Team-Manager/app/assets/javascripts/players.coffee delete mode 100644 Team-Manager/app/assets/javascripts/team_people.coffee delete mode 100644 Team-Manager/app/assets/javascripts/teams.coffee delete mode 100644 Team-Manager/app/assets/stylesheets/application.css delete mode 100644 Team-Manager/app/assets/stylesheets/certifications.scss delete mode 100644 Team-Manager/app/assets/stylesheets/coaches.scss delete mode 100644 Team-Manager/app/assets/stylesheets/emails.scss delete mode 100644 Team-Manager/app/assets/stylesheets/event_property_maps.scss delete mode 100644 Team-Manager/app/assets/stylesheets/event_types.scss delete mode 100644 Team-Manager/app/assets/stylesheets/events.scss delete mode 100644 Team-Manager/app/assets/stylesheets/organization_teams.scss delete mode 100644 Team-Manager/app/assets/stylesheets/organizations.scss delete mode 100644 Team-Manager/app/assets/stylesheets/parent_children.scss delete mode 100644 Team-Manager/app/assets/stylesheets/people.scss delete mode 100644 Team-Manager/app/assets/stylesheets/phone_numbers.scss delete mode 100644 Team-Manager/app/assets/stylesheets/player_statistics.scss delete mode 100644 Team-Manager/app/assets/stylesheets/players.scss delete mode 100644 Team-Manager/app/assets/stylesheets/scaffolds.scss delete mode 100644 Team-Manager/app/assets/stylesheets/team_people.scss delete mode 100644 Team-Manager/app/assets/stylesheets/teams.scss delete mode 100644 Team-Manager/app/channels/application_cable/channel.rb delete mode 100644 Team-Manager/app/channels/application_cable/connection.rb delete mode 100644 Team-Manager/app/controllers/application_controller.rb delete mode 100644 Team-Manager/app/controllers/certifications_controller.rb delete mode 100644 Team-Manager/app/controllers/coaches_controller.rb delete mode 100644 Team-Manager/app/controllers/concerns/.keep delete mode 100644 Team-Manager/app/controllers/emails_controller.rb delete mode 100644 Team-Manager/app/controllers/event_property_maps_controller.rb delete mode 100644 Team-Manager/app/controllers/event_types_controller.rb delete mode 100644 Team-Manager/app/controllers/events_controller.rb delete mode 100644 Team-Manager/app/controllers/organization_teams_controller.rb delete mode 100644 Team-Manager/app/controllers/organizations_controller.rb delete mode 100644 Team-Manager/app/controllers/parent_children_controller.rb delete mode 100644 Team-Manager/app/controllers/people_controller.rb delete mode 100644 Team-Manager/app/controllers/phone_numbers_controller.rb delete mode 100644 Team-Manager/app/controllers/player_statistics_controller.rb delete mode 100644 Team-Manager/app/controllers/players_controller.rb delete mode 100644 Team-Manager/app/controllers/team_people_controller.rb delete mode 100644 Team-Manager/app/controllers/teams_controller.rb delete mode 100644 Team-Manager/app/helpers/application_helper.rb delete mode 100644 Team-Manager/app/helpers/certifications_helper.rb delete mode 100644 Team-Manager/app/helpers/coaches_helper.rb delete mode 100644 Team-Manager/app/helpers/emails_helper.rb delete mode 100644 Team-Manager/app/helpers/event_property_maps_helper.rb delete mode 100644 Team-Manager/app/helpers/event_types_helper.rb delete mode 100644 Team-Manager/app/helpers/events_helper.rb delete mode 100644 Team-Manager/app/helpers/organization_teams_helper.rb delete mode 100644 Team-Manager/app/helpers/organizations_helper.rb delete mode 100644 Team-Manager/app/helpers/parent_children_helper.rb delete mode 100644 Team-Manager/app/helpers/people_helper.rb delete mode 100644 Team-Manager/app/helpers/phone_numbers_helper.rb delete mode 100644 Team-Manager/app/helpers/player_statistics_helper.rb delete mode 100644 Team-Manager/app/helpers/players_helper.rb delete mode 100644 Team-Manager/app/helpers/team_people_helper.rb delete mode 100644 Team-Manager/app/helpers/teams_helper.rb delete mode 100644 Team-Manager/app/jobs/application_job.rb delete mode 100644 Team-Manager/app/mailers/application_mailer.rb delete mode 100644 Team-Manager/app/models/application_record.rb delete mode 100644 Team-Manager/app/models/certification.rb delete mode 100644 Team-Manager/app/models/coach.rb delete mode 100644 Team-Manager/app/models/concerns/.keep delete mode 100644 Team-Manager/app/models/email.rb delete mode 100644 Team-Manager/app/models/event.rb delete mode 100644 Team-Manager/app/models/event_property_map.rb delete mode 100644 Team-Manager/app/models/event_type.rb delete mode 100644 Team-Manager/app/models/organization.rb delete mode 100644 Team-Manager/app/models/organization_team.rb delete mode 100644 Team-Manager/app/models/parent_child.rb delete mode 100644 Team-Manager/app/models/person.rb delete mode 100644 Team-Manager/app/models/phone_number.rb delete mode 100644 Team-Manager/app/models/player.rb delete mode 100644 Team-Manager/app/models/player_statistic.rb delete mode 100644 Team-Manager/app/models/team.rb delete mode 100644 Team-Manager/app/models/team_person.rb delete mode 100644 Team-Manager/app/views/certifications/_certification.json.jbuilder delete mode 100644 Team-Manager/app/views/certifications/_form.html.erb delete mode 100644 Team-Manager/app/views/certifications/edit.html.erb delete mode 100644 Team-Manager/app/views/certifications/index.html.erb delete mode 100644 Team-Manager/app/views/certifications/index.json.jbuilder delete mode 100644 Team-Manager/app/views/certifications/new.html.erb delete mode 100644 Team-Manager/app/views/certifications/show.html.erb delete mode 100644 Team-Manager/app/views/certifications/show.json.jbuilder delete mode 100644 Team-Manager/app/views/coaches/_coach.json.jbuilder delete mode 100644 Team-Manager/app/views/coaches/_form.html.erb delete mode 100644 Team-Manager/app/views/coaches/edit.html.erb delete mode 100644 Team-Manager/app/views/coaches/index.html.erb delete mode 100644 Team-Manager/app/views/coaches/index.json.jbuilder delete mode 100644 Team-Manager/app/views/coaches/new.html.erb delete mode 100644 Team-Manager/app/views/coaches/show.html.erb delete mode 100644 Team-Manager/app/views/coaches/show.json.jbuilder delete mode 100644 Team-Manager/app/views/emails/_email.json.jbuilder delete mode 100644 Team-Manager/app/views/emails/_form.html.erb delete mode 100644 Team-Manager/app/views/emails/edit.html.erb delete mode 100644 Team-Manager/app/views/emails/index.html.erb delete mode 100644 Team-Manager/app/views/emails/index.json.jbuilder delete mode 100644 Team-Manager/app/views/emails/new.html.erb delete mode 100644 Team-Manager/app/views/emails/show.html.erb delete mode 100644 Team-Manager/app/views/emails/show.json.jbuilder delete mode 100644 Team-Manager/app/views/event_property_maps/_event_property_map.json.jbuilder delete mode 100644 Team-Manager/app/views/event_property_maps/_form.html.erb delete mode 100644 Team-Manager/app/views/event_property_maps/edit.html.erb delete mode 100644 Team-Manager/app/views/event_property_maps/index.html.erb delete mode 100644 Team-Manager/app/views/event_property_maps/index.json.jbuilder delete mode 100644 Team-Manager/app/views/event_property_maps/new.html.erb delete mode 100644 Team-Manager/app/views/event_property_maps/show.html.erb delete mode 100644 Team-Manager/app/views/event_property_maps/show.json.jbuilder delete mode 100644 Team-Manager/app/views/event_types/_event_type.json.jbuilder delete mode 100644 Team-Manager/app/views/event_types/_form.html.erb delete mode 100644 Team-Manager/app/views/event_types/edit.html.erb delete mode 100644 Team-Manager/app/views/event_types/index.html.erb delete mode 100644 Team-Manager/app/views/event_types/index.json.jbuilder delete mode 100644 Team-Manager/app/views/event_types/new.html.erb delete mode 100644 Team-Manager/app/views/event_types/show.html.erb delete mode 100644 Team-Manager/app/views/event_types/show.json.jbuilder delete mode 100644 Team-Manager/app/views/events/_event.json.jbuilder delete mode 100644 Team-Manager/app/views/events/_form.html.erb delete mode 100644 Team-Manager/app/views/events/edit.html.erb delete mode 100644 Team-Manager/app/views/events/index.html.erb delete mode 100644 Team-Manager/app/views/events/index.json.jbuilder delete mode 100644 Team-Manager/app/views/events/new.html.erb delete mode 100644 Team-Manager/app/views/events/show.html.erb delete mode 100644 Team-Manager/app/views/events/show.json.jbuilder delete mode 100644 Team-Manager/app/views/layouts/application.html.erb delete mode 100644 Team-Manager/app/views/layouts/mailer.html.erb delete mode 100644 Team-Manager/app/views/layouts/mailer.text.erb delete mode 100644 Team-Manager/app/views/organization_teams/_form.html.erb delete mode 100644 Team-Manager/app/views/organization_teams/_organization_team.json.jbuilder delete mode 100644 Team-Manager/app/views/organization_teams/edit.html.erb delete mode 100644 Team-Manager/app/views/organization_teams/index.html.erb delete mode 100644 Team-Manager/app/views/organization_teams/index.json.jbuilder delete mode 100644 Team-Manager/app/views/organization_teams/new.html.erb delete mode 100644 Team-Manager/app/views/organization_teams/show.html.erb delete mode 100644 Team-Manager/app/views/organization_teams/show.json.jbuilder delete mode 100644 Team-Manager/app/views/organizations/_form.html.erb delete mode 100644 Team-Manager/app/views/organizations/_organization.json.jbuilder delete mode 100644 Team-Manager/app/views/organizations/edit.html.erb delete mode 100644 Team-Manager/app/views/organizations/index.html.erb delete mode 100644 Team-Manager/app/views/organizations/index.json.jbuilder delete mode 100644 Team-Manager/app/views/organizations/new.html.erb delete mode 100644 Team-Manager/app/views/organizations/show.html.erb delete mode 100644 Team-Manager/app/views/organizations/show.json.jbuilder delete mode 100644 Team-Manager/app/views/parent_children/_form.html.erb delete mode 100644 Team-Manager/app/views/parent_children/_parent_child.json.jbuilder delete mode 100644 Team-Manager/app/views/parent_children/edit.html.erb delete mode 100644 Team-Manager/app/views/parent_children/index.html.erb delete mode 100644 Team-Manager/app/views/parent_children/index.json.jbuilder delete mode 100644 Team-Manager/app/views/parent_children/new.html.erb delete mode 100644 Team-Manager/app/views/parent_children/show.html.erb delete mode 100644 Team-Manager/app/views/parent_children/show.json.jbuilder delete mode 100644 Team-Manager/app/views/people/_form.html.erb delete mode 100644 Team-Manager/app/views/people/_person.json.jbuilder delete mode 100644 Team-Manager/app/views/people/edit.html.erb delete mode 100644 Team-Manager/app/views/people/index.html.erb delete mode 100644 Team-Manager/app/views/people/index.json.jbuilder delete mode 100644 Team-Manager/app/views/people/new.html.erb delete mode 100644 Team-Manager/app/views/people/show.html.erb delete mode 100644 Team-Manager/app/views/people/show.json.jbuilder delete mode 100644 Team-Manager/app/views/phone_numbers/_form.html.erb delete mode 100644 Team-Manager/app/views/phone_numbers/_phone_number.json.jbuilder delete mode 100644 Team-Manager/app/views/phone_numbers/edit.html.erb delete mode 100644 Team-Manager/app/views/phone_numbers/index.html.erb delete mode 100644 Team-Manager/app/views/phone_numbers/index.json.jbuilder delete mode 100644 Team-Manager/app/views/phone_numbers/new.html.erb delete mode 100644 Team-Manager/app/views/phone_numbers/show.html.erb delete mode 100644 Team-Manager/app/views/phone_numbers/show.json.jbuilder delete mode 100644 Team-Manager/app/views/player_statistics/_form.html.erb delete mode 100644 Team-Manager/app/views/player_statistics/_player_statistic.json.jbuilder delete mode 100644 Team-Manager/app/views/player_statistics/edit.html.erb delete mode 100644 Team-Manager/app/views/player_statistics/index.html.erb delete mode 100644 Team-Manager/app/views/player_statistics/index.json.jbuilder delete mode 100644 Team-Manager/app/views/player_statistics/new.html.erb delete mode 100644 Team-Manager/app/views/player_statistics/show.html.erb delete mode 100644 Team-Manager/app/views/player_statistics/show.json.jbuilder delete mode 100644 Team-Manager/app/views/players/_form.html.erb delete mode 100644 Team-Manager/app/views/players/_player.json.jbuilder delete mode 100644 Team-Manager/app/views/players/edit.html.erb delete mode 100644 Team-Manager/app/views/players/index.html.erb delete mode 100644 Team-Manager/app/views/players/index.json.jbuilder delete mode 100644 Team-Manager/app/views/players/new.html.erb delete mode 100644 Team-Manager/app/views/players/show.html.erb delete mode 100644 Team-Manager/app/views/players/show.json.jbuilder delete mode 100644 Team-Manager/app/views/team_people/_form.html.erb delete mode 100644 Team-Manager/app/views/team_people/_team_person.json.jbuilder delete mode 100644 Team-Manager/app/views/team_people/edit.html.erb delete mode 100644 Team-Manager/app/views/team_people/index.html.erb delete mode 100644 Team-Manager/app/views/team_people/index.json.jbuilder delete mode 100644 Team-Manager/app/views/team_people/new.html.erb delete mode 100644 Team-Manager/app/views/team_people/show.html.erb delete mode 100644 Team-Manager/app/views/team_people/show.json.jbuilder delete mode 100644 Team-Manager/app/views/teams/_form.html.erb delete mode 100644 Team-Manager/app/views/teams/_team.json.jbuilder delete mode 100644 Team-Manager/app/views/teams/edit.html.erb delete mode 100644 Team-Manager/app/views/teams/index.html.erb delete mode 100644 Team-Manager/app/views/teams/index.json.jbuilder delete mode 100644 Team-Manager/app/views/teams/new.html.erb delete mode 100644 Team-Manager/app/views/teams/show.html.erb delete mode 100644 Team-Manager/app/views/teams/show.json.jbuilder delete mode 100755 Team-Manager/bin/bundle delete mode 100755 Team-Manager/bin/rails delete mode 100755 Team-Manager/bin/rake delete mode 100755 Team-Manager/bin/setup delete mode 100755 Team-Manager/bin/spring delete mode 100755 Team-Manager/bin/update delete mode 100644 Team-Manager/config.ru delete mode 100644 Team-Manager/config/application.rb delete mode 100644 Team-Manager/config/boot.rb delete mode 100644 Team-Manager/config/cable.yml delete mode 100644 Team-Manager/config/database.yml delete mode 100644 Team-Manager/config/environment.rb delete mode 100644 Team-Manager/config/environments/development.rb delete mode 100644 Team-Manager/config/environments/production.rb delete mode 100644 Team-Manager/config/environments/test.rb delete mode 100644 Team-Manager/config/initializers/application_controller_renderer.rb delete mode 100644 Team-Manager/config/initializers/assets.rb delete mode 100644 Team-Manager/config/initializers/backtrace_silencers.rb delete mode 100644 Team-Manager/config/initializers/cookies_serializer.rb delete mode 100644 Team-Manager/config/initializers/filter_parameter_logging.rb delete mode 100644 Team-Manager/config/initializers/inflections.rb delete mode 100644 Team-Manager/config/initializers/mime_types.rb delete mode 100644 Team-Manager/config/initializers/new_framework_defaults.rb delete mode 100644 Team-Manager/config/initializers/session_store.rb delete mode 100644 Team-Manager/config/initializers/wrap_parameters.rb delete mode 100644 Team-Manager/config/locales/en.yml delete mode 100644 Team-Manager/config/puma.rb delete mode 100644 Team-Manager/config/routes.rb delete mode 100644 Team-Manager/config/secrets.yml delete mode 100644 Team-Manager/config/spring.rb delete mode 100644 Team-Manager/db/migrate/20160926050909_create_people.rb delete mode 100644 Team-Manager/db/migrate/20160926051852_create_phone_numbers.rb delete mode 100644 Team-Manager/db/migrate/20160926051936_create_emails.rb delete mode 100644 Team-Manager/db/migrate/20160926053714_create_phone_numbers.rb delete mode 100644 Team-Manager/db/migrate/20160926053723_create_emails.rb delete mode 100644 Team-Manager/db/migrate/20160926053732_create_team_people.rb delete mode 100644 Team-Manager/db/migrate/20160926053806_create_people.rb delete mode 100644 Team-Manager/db/migrate/20160926053858_create_players.rb delete mode 100644 Team-Manager/db/migrate/20160927021433_create_coaches.rb delete mode 100644 Team-Manager/db/migrate/20160927021915_create_player_statistics.rb delete mode 100644 Team-Manager/db/migrate/20160927022930_create_teams.rb delete mode 100644 Team-Manager/db/migrate/20160927023204_create_people.rb delete mode 100644 Team-Manager/db/migrate/20160927023500_create_organization_teams.rb delete mode 100644 Team-Manager/db/migrate/20160927023816_create_organizations.rb delete mode 100644 Team-Manager/db/migrate/20160927024414_create_events.rb delete mode 100644 Team-Manager/db/migrate/20160927024645_create_event_types.rb delete mode 100644 Team-Manager/db/migrate/20160927024802_create_event_property_maps.rb delete mode 100644 Team-Manager/db/migrate/20160927025028_create_parent_children.rb delete mode 100644 Team-Manager/db/migrate/20160927025116_create_certifications.rb delete mode 100644 Team-Manager/db/migrate/20160927030105_create_certifications.rb delete mode 100644 Team-Manager/db/migrate/20160927032106_create_people.rb delete mode 100644 Team-Manager/db/migrate/20160927034853_create_emails.rb delete mode 100644 Team-Manager/db/migrate/20160927035528_create_phone_numbers.rb delete mode 100644 Team-Manager/db/schema.rb delete mode 100644 Team-Manager/db/seeds.rb delete mode 100644 Team-Manager/lib/assets/.keep delete mode 100644 Team-Manager/lib/tasks/.keep delete mode 100644 Team-Manager/log/.keep delete mode 100644 Team-Manager/public/404.html delete mode 100644 Team-Manager/public/422.html delete mode 100644 Team-Manager/public/500.html delete mode 100644 Team-Manager/public/apple-touch-icon-precomposed.png delete mode 100644 Team-Manager/public/apple-touch-icon.png delete mode 100644 Team-Manager/public/favicon.ico delete mode 100644 Team-Manager/public/robots.txt delete mode 100644 Team-Manager/test/controllers/.keep delete mode 100644 Team-Manager/test/controllers/certifications_controller_test.rb delete mode 100644 Team-Manager/test/controllers/coaches_controller_test.rb delete mode 100644 Team-Manager/test/controllers/emails_controller_test.rb delete mode 100644 Team-Manager/test/controllers/event_property_maps_controller_test.rb delete mode 100644 Team-Manager/test/controllers/event_types_controller_test.rb delete mode 100644 Team-Manager/test/controllers/events_controller_test.rb delete mode 100644 Team-Manager/test/controllers/organization_teams_controller_test.rb delete mode 100644 Team-Manager/test/controllers/organizations_controller_test.rb delete mode 100644 Team-Manager/test/controllers/parent_children_controller_test.rb delete mode 100644 Team-Manager/test/controllers/people_controller_test.rb delete mode 100644 Team-Manager/test/controllers/phone_numbers_controller_test.rb delete mode 100644 Team-Manager/test/controllers/player_statistics_controller_test.rb delete mode 100644 Team-Manager/test/controllers/players_controller_test.rb delete mode 100644 Team-Manager/test/controllers/team_people_controller_test.rb delete mode 100644 Team-Manager/test/controllers/teams_controller_test.rb delete mode 100644 Team-Manager/test/fixtures/.keep delete mode 100644 Team-Manager/test/fixtures/certifications.yml delete mode 100644 Team-Manager/test/fixtures/coaches.yml delete mode 100644 Team-Manager/test/fixtures/emails.yml delete mode 100644 Team-Manager/test/fixtures/event_property_maps.yml delete mode 100644 Team-Manager/test/fixtures/event_types.yml delete mode 100644 Team-Manager/test/fixtures/events.yml delete mode 100644 Team-Manager/test/fixtures/files/.keep delete mode 100644 Team-Manager/test/fixtures/organization_teams.yml delete mode 100644 Team-Manager/test/fixtures/organizations.yml delete mode 100644 Team-Manager/test/fixtures/parent_children.yml delete mode 100644 Team-Manager/test/fixtures/people.yml delete mode 100644 Team-Manager/test/fixtures/phone_numbers.yml delete mode 100644 Team-Manager/test/fixtures/player_statistics.yml delete mode 100644 Team-Manager/test/fixtures/players.yml delete mode 100644 Team-Manager/test/fixtures/team_people.yml delete mode 100644 Team-Manager/test/fixtures/teams.yml delete mode 100644 Team-Manager/test/helpers/.keep delete mode 100644 Team-Manager/test/integration/.keep delete mode 100644 Team-Manager/test/mailers/.keep delete mode 100644 Team-Manager/test/models/.keep delete mode 100644 Team-Manager/test/models/certification_test.rb delete mode 100644 Team-Manager/test/models/coach_test.rb delete mode 100644 Team-Manager/test/models/email_test.rb delete mode 100644 Team-Manager/test/models/event_property_map_test.rb delete mode 100644 Team-Manager/test/models/event_test.rb delete mode 100644 Team-Manager/test/models/event_type_test.rb delete mode 100644 Team-Manager/test/models/organization_team_test.rb delete mode 100644 Team-Manager/test/models/organization_test.rb delete mode 100644 Team-Manager/test/models/parent_child_test.rb delete mode 100644 Team-Manager/test/models/person_test.rb delete mode 100644 Team-Manager/test/models/phone_number_test.rb delete mode 100644 Team-Manager/test/models/player_statistic_test.rb delete mode 100644 Team-Manager/test/models/player_test.rb delete mode 100644 Team-Manager/test/models/team_person_test.rb delete mode 100644 Team-Manager/test/models/team_test.rb delete mode 100644 Team-Manager/test/test_helper.rb delete mode 100644 Team-Manager/tmp/.keep delete mode 100644 Team-Manager/vendor/assets/javascripts/.keep delete mode 100644 Team-Manager/vendor/assets/stylesheets/.keep delete mode 100644 artifacts/sports_org_erd_v2.mwb delete mode 100644 artifacts/sports_org_erd_v3.mwb delete mode 100644 artifacts/sports_org_erd_v4.mwb delete mode 100644 artifacts/sports_org_erd_v5.mwb delete mode 100644 artifacts/sports_org_erd_v5.mwb.bak delete mode 100644 generating_script diff --git a/.gitignore b/.gitignore index f334c22..bab620d 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,3 @@ # Ignore Byebug command history file. .byebug_history - -# Ignore the bane of all git repos. -.DS_Store diff --git a/Team-Manager/.gitignore b/Team-Manager/.gitignore deleted file mode 100644 index bab620d..0000000 --- a/Team-Manager/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ -# See https://help.github.com/articles/ignoring-files for more about ignoring files. -# -# If you find yourself ignoring temporary files generated by your text editor -# or operating system, you probably want to add a global ignore instead: -# git config --global core.excludesfile '~/.gitignore_global' - -# Ignore bundler config. -/.bundle - -# Ignore the default SQLite database. -/db/*.sqlite3 -/db/*.sqlite3-journal - -# Ignore all logfiles and tempfiles. -/log/* -/tmp/* -!/log/.keep -!/tmp/.keep - -# Ignore Byebug command history file. -.byebug_history diff --git a/Team-Manager/Gemfile b/Team-Manager/Gemfile deleted file mode 100644 index 4aa8f6b..0000000 --- a/Team-Manager/Gemfile +++ /dev/null @@ -1,48 +0,0 @@ -source 'https://rubygems.org' - - -# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' -gem 'rails', '~> 5.0.0', '>= 5.0.0.1' -# Use sqlite3 as the database for Active Record -gem 'sqlite3' -# Use Puma as the app server -gem 'puma', '~> 3.0' -# Use SCSS for stylesheets -gem 'sass-rails', '~> 5.0' -# Use Uglifier as compressor for JavaScript assets -gem 'uglifier', '>= 1.3.0' -# Use CoffeeScript for .coffee assets and views -gem 'coffee-rails', '~> 4.2' -# See https://github.com/rails/execjs#readme for more supported runtimes -# gem 'therubyracer', platforms: :ruby - -# Use jquery as the JavaScript library -gem 'jquery-rails' -# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks -gem 'turbolinks', '~> 5' -# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder -gem 'jbuilder', '~> 2.5' -# Use Redis adapter to run Action Cable in production -# gem 'redis', '~> 3.0' -# Use ActiveModel has_secure_password -# gem 'bcrypt', '~> 3.1.7' - -# Use Capistrano for deployment -# gem 'capistrano-rails', group: :development - -group :development, :test do - # Call 'byebug' anywhere in the code to stop execution and get a debugger console - gem 'byebug', platform: :mri -end - -group :development do - # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. - gem 'web-console' - gem 'listen', '~> 3.0.5' - # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring - gem 'spring' - gem 'spring-watcher-listen', '~> 2.0.0' -end - -# Windows does not include zoneinfo files, so bundle the tzinfo-data gem -gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] diff --git a/Team-Manager/Gemfile.lock b/Team-Manager/Gemfile.lock deleted file mode 100644 index 5ba3563..0000000 --- a/Team-Manager/Gemfile.lock +++ /dev/null @@ -1,175 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - actioncable (5.0.0.1) - actionpack (= 5.0.0.1) - nio4r (~> 1.2) - websocket-driver (~> 0.6.1) - actionmailer (5.0.0.1) - actionpack (= 5.0.0.1) - actionview (= 5.0.0.1) - activejob (= 5.0.0.1) - mail (~> 2.5, >= 2.5.4) - rails-dom-testing (~> 2.0) - actionpack (5.0.0.1) - actionview (= 5.0.0.1) - activesupport (= 5.0.0.1) - rack (~> 2.0) - rack-test (~> 0.6.3) - rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (5.0.0.1) - activesupport (= 5.0.0.1) - builder (~> 3.1) - erubis (~> 2.7.0) - rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - activejob (5.0.0.1) - activesupport (= 5.0.0.1) - globalid (>= 0.3.6) - activemodel (5.0.0.1) - activesupport (= 5.0.0.1) - activerecord (5.0.0.1) - activemodel (= 5.0.0.1) - activesupport (= 5.0.0.1) - arel (~> 7.0) - activesupport (5.0.0.1) - concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (~> 0.7) - minitest (~> 5.1) - tzinfo (~> 1.1) - arel (7.1.2) - builder (3.2.2) - byebug (9.0.5) - coffee-rails (4.2.1) - coffee-script (>= 2.2.0) - railties (>= 4.0.0, < 5.2.x) - coffee-script (2.4.1) - coffee-script-source - execjs - coffee-script-source (1.10.0) - concurrent-ruby (1.0.2) - debug_inspector (0.0.2) - erubis (2.7.0) - execjs (2.7.0) - ffi (1.9.14) - globalid (0.3.7) - activesupport (>= 4.1.0) - i18n (0.7.0) - jbuilder (2.6.0) - activesupport (>= 3.0.0, < 5.1) - multi_json (~> 1.2) - jquery-rails (4.2.1) - rails-dom-testing (>= 1, < 3) - railties (>= 4.2.0) - thor (>= 0.14, < 2.0) - listen (3.0.8) - rb-fsevent (~> 0.9, >= 0.9.4) - rb-inotify (~> 0.9, >= 0.9.7) - loofah (2.0.3) - nokogiri (>= 1.5.9) - mail (2.6.4) - mime-types (>= 1.16, < 4) - method_source (0.8.2) - mime-types (3.1) - mime-types-data (~> 3.2015) - mime-types-data (3.2016.0521) - mini_portile2 (2.1.0) - minitest (5.9.1) - multi_json (1.12.1) - nio4r (1.2.1) - nokogiri (1.6.8) - mini_portile2 (~> 2.1.0) - pkg-config (~> 1.1.7) - pkg-config (1.1.7) - puma (3.6.0) - rack (2.0.1) - rack-test (0.6.3) - rack (>= 1.0) - rails (5.0.0.1) - actioncable (= 5.0.0.1) - actionmailer (= 5.0.0.1) - actionpack (= 5.0.0.1) - actionview (= 5.0.0.1) - activejob (= 5.0.0.1) - activemodel (= 5.0.0.1) - activerecord (= 5.0.0.1) - activesupport (= 5.0.0.1) - bundler (>= 1.3.0, < 2.0) - railties (= 5.0.0.1) - sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.1) - activesupport (>= 4.2.0, < 6.0) - nokogiri (~> 1.6.0) - rails-html-sanitizer (1.0.3) - loofah (~> 2.0) - railties (5.0.0.1) - actionpack (= 5.0.0.1) - activesupport (= 5.0.0.1) - method_source - rake (>= 0.8.7) - thor (>= 0.18.1, < 2.0) - rake (11.3.0) - rb-fsevent (0.9.7) - rb-inotify (0.9.7) - ffi (>= 0.5.0) - sass (3.4.22) - sass-rails (5.0.6) - railties (>= 4.0.0, < 6) - sass (~> 3.1) - sprockets (>= 2.8, < 4.0) - sprockets-rails (>= 2.0, < 4.0) - tilt (>= 1.1, < 3) - spring (1.7.2) - spring-watcher-listen (2.0.0) - listen (>= 2.7, < 4.0) - spring (~> 1.2) - sprockets (3.7.0) - concurrent-ruby (~> 1.0) - rack (> 1, < 3) - sprockets-rails (3.2.0) - actionpack (>= 4.0) - activesupport (>= 4.0) - sprockets (>= 3.0.0) - sqlite3 (1.3.11) - thor (0.19.1) - thread_safe (0.3.5) - tilt (2.0.5) - turbolinks (5.0.1) - turbolinks-source (~> 5) - turbolinks-source (5.0.0) - tzinfo (1.2.2) - thread_safe (~> 0.1) - uglifier (3.0.2) - execjs (>= 0.3.0, < 3) - web-console (3.3.1) - actionview (>= 5.0) - activemodel (>= 5.0) - debug_inspector - railties (>= 5.0) - websocket-driver (0.6.4) - websocket-extensions (>= 0.1.0) - websocket-extensions (0.1.2) - -PLATFORMS - ruby - -DEPENDENCIES - byebug - coffee-rails (~> 4.2) - jbuilder (~> 2.5) - jquery-rails - listen (~> 3.0.5) - puma (~> 3.0) - rails (~> 5.0.0, >= 5.0.0.1) - sass-rails (~> 5.0) - spring - spring-watcher-listen (~> 2.0.0) - sqlite3 - turbolinks (~> 5) - tzinfo-data - uglifier (>= 1.3.0) - web-console - -BUNDLED WITH - 1.12.5 diff --git a/Team-Manager/README.md b/Team-Manager/README.md deleted file mode 100644 index 7db80e4..0000000 --- a/Team-Manager/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# README - -This README would normally document whatever steps are necessary to get the -application up and running. - -Things you may want to cover: - -* Ruby version - -* System dependencies - -* Configuration - -* Database creation - -* Database initialization - -* How to run the test suite - -* Services (job queues, cache servers, search engines, etc.) - -* Deployment instructions - -* ... diff --git a/Team-Manager/Rakefile b/Team-Manager/Rakefile deleted file mode 100644 index e85f913..0000000 --- a/Team-Manager/Rakefile +++ /dev/null @@ -1,6 +0,0 @@ -# Add your own tasks in files placed in lib/tasks ending in .rake, -# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. - -require_relative 'config/application' - -Rails.application.load_tasks diff --git a/Team-Manager/app/assets/config/manifest.js b/Team-Manager/app/assets/config/manifest.js deleted file mode 100644 index b16e53d..0000000 --- a/Team-Manager/app/assets/config/manifest.js +++ /dev/null @@ -1,3 +0,0 @@ -//= link_tree ../images -//= link_directory ../javascripts .js -//= link_directory ../stylesheets .css diff --git a/Team-Manager/app/assets/images/.keep b/Team-Manager/app/assets/images/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/app/assets/javascripts/application.js b/Team-Manager/app/assets/javascripts/application.js deleted file mode 100644 index b12018d..0000000 --- a/Team-Manager/app/assets/javascripts/application.js +++ /dev/null @@ -1,16 +0,0 @@ -// This is a manifest file that'll be compiled into application.js, which will include all the files -// listed below. -// -// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, -// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. -// -// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the -// compiled file. JavaScript code in this file should be added after the last require_* statement. -// -// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details -// about supported directives. -// -//= require jquery -//= require jquery_ujs -//= require turbolinks -//= require_tree . diff --git a/Team-Manager/app/assets/javascripts/cable.js b/Team-Manager/app/assets/javascripts/cable.js deleted file mode 100644 index 71ee1e6..0000000 --- a/Team-Manager/app/assets/javascripts/cable.js +++ /dev/null @@ -1,13 +0,0 @@ -// Action Cable provides the framework to deal with WebSockets in Rails. -// You can generate new channels where WebSocket features live using the rails generate channel command. -// -//= require action_cable -//= require_self -//= require_tree ./channels - -(function() { - this.App || (this.App = {}); - - App.cable = ActionCable.createConsumer(); - -}).call(this); diff --git a/Team-Manager/app/assets/javascripts/certifications.coffee b/Team-Manager/app/assets/javascripts/certifications.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/certifications.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/channels/.keep b/Team-Manager/app/assets/javascripts/channels/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/app/assets/javascripts/coaches.coffee b/Team-Manager/app/assets/javascripts/coaches.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/coaches.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/emails.coffee b/Team-Manager/app/assets/javascripts/emails.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/emails.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/event_property_maps.coffee b/Team-Manager/app/assets/javascripts/event_property_maps.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/event_property_maps.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/event_types.coffee b/Team-Manager/app/assets/javascripts/event_types.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/event_types.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/events.coffee b/Team-Manager/app/assets/javascripts/events.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/events.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/organization_teams.coffee b/Team-Manager/app/assets/javascripts/organization_teams.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/organization_teams.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/organizations.coffee b/Team-Manager/app/assets/javascripts/organizations.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/organizations.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/parent_children.coffee b/Team-Manager/app/assets/javascripts/parent_children.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/parent_children.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/people.coffee b/Team-Manager/app/assets/javascripts/people.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/people.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/phone_numbers.coffee b/Team-Manager/app/assets/javascripts/phone_numbers.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/phone_numbers.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/player_statistics.coffee b/Team-Manager/app/assets/javascripts/player_statistics.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/player_statistics.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/players.coffee b/Team-Manager/app/assets/javascripts/players.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/players.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/team_people.coffee b/Team-Manager/app/assets/javascripts/team_people.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/team_people.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/javascripts/teams.coffee b/Team-Manager/app/assets/javascripts/teams.coffee deleted file mode 100644 index 24f83d1..0000000 --- a/Team-Manager/app/assets/javascripts/teams.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/Team-Manager/app/assets/stylesheets/application.css b/Team-Manager/app/assets/stylesheets/application.css deleted file mode 100644 index 0ebd7fe..0000000 --- a/Team-Manager/app/assets/stylesheets/application.css +++ /dev/null @@ -1,15 +0,0 @@ -/* - * This is a manifest file that'll be compiled into application.css, which will include all the files - * listed below. - * - * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, - * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. - * - * You're free to add application-wide styles to this file and they'll appear at the bottom of the - * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS - * files in this directory. Styles in this file should be added after the last require_* statement. - * It is generally better to create a new file per style scope. - * - *= require_tree . - *= require_self - */ diff --git a/Team-Manager/app/assets/stylesheets/certifications.scss b/Team-Manager/app/assets/stylesheets/certifications.scss deleted file mode 100644 index 2e35715..0000000 --- a/Team-Manager/app/assets/stylesheets/certifications.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Certifications controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/coaches.scss b/Team-Manager/app/assets/stylesheets/coaches.scss deleted file mode 100644 index 3347e7f..0000000 --- a/Team-Manager/app/assets/stylesheets/coaches.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Coaches controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/emails.scss b/Team-Manager/app/assets/stylesheets/emails.scss deleted file mode 100644 index 35db24d..0000000 --- a/Team-Manager/app/assets/stylesheets/emails.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Emails controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/event_property_maps.scss b/Team-Manager/app/assets/stylesheets/event_property_maps.scss deleted file mode 100644 index 48567b8..0000000 --- a/Team-Manager/app/assets/stylesheets/event_property_maps.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Event_property_maps controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/event_types.scss b/Team-Manager/app/assets/stylesheets/event_types.scss deleted file mode 100644 index 435d380..0000000 --- a/Team-Manager/app/assets/stylesheets/event_types.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Event_types controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/events.scss b/Team-Manager/app/assets/stylesheets/events.scss deleted file mode 100644 index e975d96..0000000 --- a/Team-Manager/app/assets/stylesheets/events.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Events controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/organization_teams.scss b/Team-Manager/app/assets/stylesheets/organization_teams.scss deleted file mode 100644 index 7defcb6..0000000 --- a/Team-Manager/app/assets/stylesheets/organization_teams.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Organization_teams controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/organizations.scss b/Team-Manager/app/assets/stylesheets/organizations.scss deleted file mode 100644 index 2cd042f..0000000 --- a/Team-Manager/app/assets/stylesheets/organizations.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Organizations controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/parent_children.scss b/Team-Manager/app/assets/stylesheets/parent_children.scss deleted file mode 100644 index fe8c2fe..0000000 --- a/Team-Manager/app/assets/stylesheets/parent_children.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Parent_children controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/people.scss b/Team-Manager/app/assets/stylesheets/people.scss deleted file mode 100644 index 5217462..0000000 --- a/Team-Manager/app/assets/stylesheets/people.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the People controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/phone_numbers.scss b/Team-Manager/app/assets/stylesheets/phone_numbers.scss deleted file mode 100644 index 26dc5d8..0000000 --- a/Team-Manager/app/assets/stylesheets/phone_numbers.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Phone_Numbers controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/player_statistics.scss b/Team-Manager/app/assets/stylesheets/player_statistics.scss deleted file mode 100644 index 73ad348..0000000 --- a/Team-Manager/app/assets/stylesheets/player_statistics.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Player_statistics controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/players.scss b/Team-Manager/app/assets/stylesheets/players.scss deleted file mode 100644 index 74426b3..0000000 --- a/Team-Manager/app/assets/stylesheets/players.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Players controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/scaffolds.scss b/Team-Manager/app/assets/stylesheets/scaffolds.scss deleted file mode 100644 index 4ce4266..0000000 --- a/Team-Manager/app/assets/stylesheets/scaffolds.scss +++ /dev/null @@ -1,89 +0,0 @@ -body { - background-color: #fff; - color: #333; - font-family: verdana, arial, helvetica, sans-serif; - font-size: 13px; - line-height: 18px; - margin: 33px; -} - -p, ol, ul, td { - font-family: verdana, arial, helvetica, sans-serif; - font-size: 13px; - line-height: 18px; - margin: 33px; -} - -pre { - background-color: #eee; - padding: 10px; - font-size: 11px; -} - -a { - color: #000; - - &:visited { - color: #666; - } - - &:hover { - color: #fff; - background-color: #000; - } -} - -th { - padding-bottom: 5px; -} - -td { - padding-bottom: 7px; - padding-left: 5px; - padding-right: 5px; -} - -div { - &.field, &.actions { - margin-bottom: 10px; - } -} - -#notice { - color: green; -} - -.field_with_errors { - padding: 2px; - background-color: red; - display: table; -} - -#error_explanation { - width: 450px; - border: 2px solid red; - padding: 7px; - padding-bottom: 0; - margin-bottom: 20px; - background-color: #f0f0f0; - - h2 { - text-align: left; - font-weight: bold; - padding: 5px 5px 5px 15px; - font-size: 12px; - margin: -7px; - margin-bottom: 0; - background-color: #c00; - color: #fff; - } - - ul li { - font-size: 12px; - list-style: square; - } -} - -label { - display: block; -} diff --git a/Team-Manager/app/assets/stylesheets/team_people.scss b/Team-Manager/app/assets/stylesheets/team_people.scss deleted file mode 100644 index f946e8c..0000000 --- a/Team-Manager/app/assets/stylesheets/team_people.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Team_people controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/assets/stylesheets/teams.scss b/Team-Manager/app/assets/stylesheets/teams.scss deleted file mode 100644 index bab9643..0000000 --- a/Team-Manager/app/assets/stylesheets/teams.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Teams controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/Team-Manager/app/channels/application_cable/channel.rb b/Team-Manager/app/channels/application_cable/channel.rb deleted file mode 100644 index d672697..0000000 --- a/Team-Manager/app/channels/application_cable/channel.rb +++ /dev/null @@ -1,4 +0,0 @@ -module ApplicationCable - class Channel < ActionCable::Channel::Base - end -end diff --git a/Team-Manager/app/channels/application_cable/connection.rb b/Team-Manager/app/channels/application_cable/connection.rb deleted file mode 100644 index 0ff5442..0000000 --- a/Team-Manager/app/channels/application_cable/connection.rb +++ /dev/null @@ -1,4 +0,0 @@ -module ApplicationCable - class Connection < ActionCable::Connection::Base - end -end diff --git a/Team-Manager/app/controllers/application_controller.rb b/Team-Manager/app/controllers/application_controller.rb deleted file mode 100644 index 1c07694..0000000 --- a/Team-Manager/app/controllers/application_controller.rb +++ /dev/null @@ -1,3 +0,0 @@ -class ApplicationController < ActionController::Base - protect_from_forgery with: :exception -end diff --git a/Team-Manager/app/controllers/certifications_controller.rb b/Team-Manager/app/controllers/certifications_controller.rb deleted file mode 100644 index f29f341..0000000 --- a/Team-Manager/app/controllers/certifications_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class CertificationsController < ApplicationController - before_action :set_certification, only: [:show, :edit, :update, :destroy] - - # GET /certifications - # GET /certifications.json - def index - @certifications = Certification.all - end - - # GET /certifications/1 - # GET /certifications/1.json - def show - end - - # GET /certifications/new - def new - @certification = Certification.new - end - - # GET /certifications/1/edit - def edit - end - - # POST /certifications - # POST /certifications.json - def create - @certification = Certification.new(certification_params) - - respond_to do |format| - if @certification.save - format.html { redirect_to @certification, notice: 'Certification was successfully created.' } - format.json { render :show, status: :created, location: @certification } - else - format.html { render :new } - format.json { render json: @certification.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /certifications/1 - # PATCH/PUT /certifications/1.json - def update - respond_to do |format| - if @certification.update(certification_params) - format.html { redirect_to @certification, notice: 'Certification was successfully updated.' } - format.json { render :show, status: :ok, location: @certification } - else - format.html { render :edit } - format.json { render json: @certification.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /certifications/1 - # DELETE /certifications/1.json - def destroy - @certification.destroy - respond_to do |format| - format.html { redirect_to certifications_url, notice: 'Certification was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_certification - @certification = Certification.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def certification_params - params.require(:certification).permit(:person_id_id, :certification_name, :expiration_date, :note) - end -end diff --git a/Team-Manager/app/controllers/coaches_controller.rb b/Team-Manager/app/controllers/coaches_controller.rb deleted file mode 100644 index e515a00..0000000 --- a/Team-Manager/app/controllers/coaches_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class CoachesController < ApplicationController - before_action :set_coach, only: [:show, :edit, :update, :destroy] - - # GET /coaches - # GET /coaches.json - def index - @coaches = Coach.all - end - - # GET /coaches/1 - # GET /coaches/1.json - def show - end - - # GET /coaches/new - def new - @coach = Coach.new - end - - # GET /coaches/1/edit - def edit - end - - # POST /coaches - # POST /coaches.json - def create - @coach = Coach.new(coach_params) - - respond_to do |format| - if @coach.save - format.html { redirect_to @coach, notice: 'Coach was successfully created.' } - format.json { render :show, status: :created, location: @coach } - else - format.html { render :new } - format.json { render json: @coach.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /coaches/1 - # PATCH/PUT /coaches/1.json - def update - respond_to do |format| - if @coach.update(coach_params) - format.html { redirect_to @coach, notice: 'Coach was successfully updated.' } - format.json { render :show, status: :ok, location: @coach } - else - format.html { render :edit } - format.json { render json: @coach.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /coaches/1 - # DELETE /coaches/1.json - def destroy - @coach.destroy - respond_to do |format| - format.html { redirect_to coaches_url, notice: 'Coach was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_coach - @coach = Coach.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def coach_params - params.require(:coach).permit(:person_id_id, :coach_type, :coach_year_began, :coach_year_ended, :coach_id) - end -end diff --git a/Team-Manager/app/controllers/concerns/.keep b/Team-Manager/app/controllers/concerns/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/app/controllers/emails_controller.rb b/Team-Manager/app/controllers/emails_controller.rb deleted file mode 100644 index a9fa1d1..0000000 --- a/Team-Manager/app/controllers/emails_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class EmailsController < ApplicationController - before_action :set_email, only: [:show, :edit, :update, :destroy] - - # GET /emails - # GET /emails.json - def index - @emails = Email.all - end - - # GET /emails/1 - # GET /emails/1.json - def show - end - - # GET /emails/new - def new - @email = Email.new - end - - # GET /emails/1/edit - def edit - end - - # POST /emails - # POST /emails.json - def create - @email = Email.new(email_params) - - respond_to do |format| - if @email.save - format.html { redirect_to @email, notice: 'Email was successfully created.' } - format.json { render :show, status: :created, location: @email } - else - format.html { render :new } - format.json { render json: @email.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /emails/1 - # PATCH/PUT /emails/1.json - def update - respond_to do |format| - if @email.update(email_params) - format.html { redirect_to @email, notice: 'Email was successfully updated.' } - format.json { render :show, status: :ok, location: @email } - else - format.html { render :edit } - format.json { render json: @email.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /emails/1 - # DELETE /emails/1.json - def destroy - @email.destroy - respond_to do |format| - format.html { redirect_to emails_url, notice: 'Email was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_email - @email = Email.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def email_params - params.require(:email).permit(:email, :person_id) - end -end diff --git a/Team-Manager/app/controllers/event_property_maps_controller.rb b/Team-Manager/app/controllers/event_property_maps_controller.rb deleted file mode 100644 index 9ad7019..0000000 --- a/Team-Manager/app/controllers/event_property_maps_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class EventPropertyMapsController < ApplicationController - before_action :set_event_property_map, only: [:show, :edit, :update, :destroy] - - # GET /event_property_maps - # GET /event_property_maps.json - def index - @event_property_maps = EventPropertyMap.all - end - - # GET /event_property_maps/1 - # GET /event_property_maps/1.json - def show - end - - # GET /event_property_maps/new - def new - @event_property_map = EventPropertyMap.new - end - - # GET /event_property_maps/1/edit - def edit - end - - # POST /event_property_maps - # POST /event_property_maps.json - def create - @event_property_map = EventPropertyMap.new(event_property_map_params) - - respond_to do |format| - if @event_property_map.save - format.html { redirect_to @event_property_map, notice: 'Event property map was successfully created.' } - format.json { render :show, status: :created, location: @event_property_map } - else - format.html { render :new } - format.json { render json: @event_property_map.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /event_property_maps/1 - # PATCH/PUT /event_property_maps/1.json - def update - respond_to do |format| - if @event_property_map.update(event_property_map_params) - format.html { redirect_to @event_property_map, notice: 'Event property map was successfully updated.' } - format.json { render :show, status: :ok, location: @event_property_map } - else - format.html { render :edit } - format.json { render json: @event_property_map.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /event_property_maps/1 - # DELETE /event_property_maps/1.json - def destroy - @event_property_map.destroy - respond_to do |format| - format.html { redirect_to event_property_maps_url, notice: 'Event property map was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_event_property_map - @event_property_map = EventPropertyMap.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def event_property_map_params - params.require(:event_property_map).permit(:event_id_id, :key, :value) - end -end diff --git a/Team-Manager/app/controllers/event_types_controller.rb b/Team-Manager/app/controllers/event_types_controller.rb deleted file mode 100644 index 168804b..0000000 --- a/Team-Manager/app/controllers/event_types_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class EventTypesController < ApplicationController - before_action :set_event_type, only: [:show, :edit, :update, :destroy] - - # GET /event_types - # GET /event_types.json - def index - @event_types = EventType.all - end - - # GET /event_types/1 - # GET /event_types/1.json - def show - end - - # GET /event_types/new - def new - @event_type = EventType.new - end - - # GET /event_types/1/edit - def edit - end - - # POST /event_types - # POST /event_types.json - def create - @event_type = EventType.new(event_type_params) - - respond_to do |format| - if @event_type.save - format.html { redirect_to @event_type, notice: 'Event type was successfully created.' } - format.json { render :show, status: :created, location: @event_type } - else - format.html { render :new } - format.json { render json: @event_type.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /event_types/1 - # PATCH/PUT /event_types/1.json - def update - respond_to do |format| - if @event_type.update(event_type_params) - format.html { redirect_to @event_type, notice: 'Event type was successfully updated.' } - format.json { render :show, status: :ok, location: @event_type } - else - format.html { render :edit } - format.json { render json: @event_type.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /event_types/1 - # DELETE /event_types/1.json - def destroy - @event_type.destroy - respond_to do |format| - format.html { redirect_to event_types_url, notice: 'Event type was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_event_type - @event_type = EventType.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def event_type_params - params.require(:event_type).permit(:event_type_id, :type_description) - end -end diff --git a/Team-Manager/app/controllers/events_controller.rb b/Team-Manager/app/controllers/events_controller.rb deleted file mode 100644 index f136512..0000000 --- a/Team-Manager/app/controllers/events_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class EventsController < ApplicationController - before_action :set_event, only: [:show, :edit, :update, :destroy] - - # GET /events - # GET /events.json - def index - @events = Event.all - end - - # GET /events/1 - # GET /events/1.json - def show - end - - # GET /events/new - def new - @event = Event.new - end - - # GET /events/1/edit - def edit - end - - # POST /events - # POST /events.json - def create - @event = Event.new(event_params) - - respond_to do |format| - if @event.save - format.html { redirect_to @event, notice: 'Event was successfully created.' } - format.json { render :show, status: :created, location: @event } - else - format.html { render :new } - format.json { render json: @event.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /events/1 - # PATCH/PUT /events/1.json - def update - respond_to do |format| - if @event.update(event_params) - format.html { redirect_to @event, notice: 'Event was successfully updated.' } - format.json { render :show, status: :ok, location: @event } - else - format.html { render :edit } - format.json { render json: @event.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /events/1 - # DELETE /events/1.json - def destroy - @event.destroy - respond_to do |format| - format.html { redirect_to events_url, notice: 'Event was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_event - @event = Event.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def event_params - params.require(:event).permit(:event_id, :event_type_id, :event_datetime, :team_id_id, :created_by, :open_to_public) - end -end diff --git a/Team-Manager/app/controllers/organization_teams_controller.rb b/Team-Manager/app/controllers/organization_teams_controller.rb deleted file mode 100644 index bef2c0e..0000000 --- a/Team-Manager/app/controllers/organization_teams_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class OrganizationTeamsController < ApplicationController - before_action :set_organization_team, only: [:show, :edit, :update, :destroy] - - # GET /organization_teams - # GET /organization_teams.json - def index - @organization_teams = OrganizationTeam.all - end - - # GET /organization_teams/1 - # GET /organization_teams/1.json - def show - end - - # GET /organization_teams/new - def new - @organization_team = OrganizationTeam.new - end - - # GET /organization_teams/1/edit - def edit - end - - # POST /organization_teams - # POST /organization_teams.json - def create - @organization_team = OrganizationTeam.new(organization_team_params) - - respond_to do |format| - if @organization_team.save - format.html { redirect_to @organization_team, notice: 'Organization team was successfully created.' } - format.json { render :show, status: :created, location: @organization_team } - else - format.html { render :new } - format.json { render json: @organization_team.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /organization_teams/1 - # PATCH/PUT /organization_teams/1.json - def update - respond_to do |format| - if @organization_team.update(organization_team_params) - format.html { redirect_to @organization_team, notice: 'Organization team was successfully updated.' } - format.json { render :show, status: :ok, location: @organization_team } - else - format.html { render :edit } - format.json { render json: @organization_team.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /organization_teams/1 - # DELETE /organization_teams/1.json - def destroy - @organization_team.destroy - respond_to do |format| - format.html { redirect_to organization_teams_url, notice: 'Organization team was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_organization_team - @organization_team = OrganizationTeam.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def organization_team_params - params.require(:organization_team).permit(:organization_id_id, :team_id_id) - end -end diff --git a/Team-Manager/app/controllers/organizations_controller.rb b/Team-Manager/app/controllers/organizations_controller.rb deleted file mode 100644 index f3e0fc1..0000000 --- a/Team-Manager/app/controllers/organizations_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class OrganizationsController < ApplicationController - before_action :set_organization, only: [:show, :edit, :update, :destroy] - - # GET /organizations - # GET /organizations.json - def index - @organizations = Organization.all - end - - # GET /organizations/1 - # GET /organizations/1.json - def show - end - - # GET /organizations/new - def new - @organization = Organization.new - end - - # GET /organizations/1/edit - def edit - end - - # POST /organizations - # POST /organizations.json - def create - @organization = Organization.new(organization_params) - - respond_to do |format| - if @organization.save - format.html { redirect_to @organization, notice: 'Organization was successfully created.' } - format.json { render :show, status: :created, location: @organization } - else - format.html { render :new } - format.json { render json: @organization.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /organizations/1 - # PATCH/PUT /organizations/1.json - def update - respond_to do |format| - if @organization.update(organization_params) - format.html { redirect_to @organization, notice: 'Organization was successfully updated.' } - format.json { render :show, status: :ok, location: @organization } - else - format.html { render :edit } - format.json { render json: @organization.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /organizations/1 - # DELETE /organizations/1.json - def destroy - @organization.destroy - respond_to do |format| - format.html { redirect_to organizations_url, notice: 'Organization was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_organization - @organization = Organization.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def organization_params - params.require(:organization).permit(:organization_id, :name) - end -end diff --git a/Team-Manager/app/controllers/parent_children_controller.rb b/Team-Manager/app/controllers/parent_children_controller.rb deleted file mode 100644 index d93be5a..0000000 --- a/Team-Manager/app/controllers/parent_children_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class ParentChildrenController < ApplicationController - before_action :set_parent_child, only: [:show, :edit, :update, :destroy] - - # GET /parent_children - # GET /parent_children.json - def index - @parent_children = ParentChild.all - end - - # GET /parent_children/1 - # GET /parent_children/1.json - def show - end - - # GET /parent_children/new - def new - @parent_child = ParentChild.new - end - - # GET /parent_children/1/edit - def edit - end - - # POST /parent_children - # POST /parent_children.json - def create - @parent_child = ParentChild.new(parent_child_params) - - respond_to do |format| - if @parent_child.save - format.html { redirect_to @parent_child, notice: 'Parent child was successfully created.' } - format.json { render :show, status: :created, location: @parent_child } - else - format.html { render :new } - format.json { render json: @parent_child.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /parent_children/1 - # PATCH/PUT /parent_children/1.json - def update - respond_to do |format| - if @parent_child.update(parent_child_params) - format.html { redirect_to @parent_child, notice: 'Parent child was successfully updated.' } - format.json { render :show, status: :ok, location: @parent_child } - else - format.html { render :edit } - format.json { render json: @parent_child.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /parent_children/1 - # DELETE /parent_children/1.json - def destroy - @parent_child.destroy - respond_to do |format| - format.html { redirect_to parent_children_url, notice: 'Parent child was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_parent_child - @parent_child = ParentChild.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def parent_child_params - params.require(:parent_child).permit(:parent_id_id, :child_id_id) - end -end diff --git a/Team-Manager/app/controllers/people_controller.rb b/Team-Manager/app/controllers/people_controller.rb deleted file mode 100644 index 6a60aac..0000000 --- a/Team-Manager/app/controllers/people_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class PeopleController < ApplicationController - before_action :set_person, only: [:show, :edit, :update, :destroy] - - # GET /people - # GET /people.json - def index - @people = Person.all - end - - # GET /people/1 - # GET /people/1.json - def show - end - - # GET /people/new - def new - @person = Person.new - end - - # GET /people/1/edit - def edit - end - - # POST /people - # POST /people.json - def create - @person = Person.new(person_params) - - respond_to do |format| - if @person.save - format.html { redirect_to @person, notice: 'Person was successfully created.' } - format.json { render :show, status: :created, location: @person } - else - format.html { render :new } - format.json { render json: @person.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /people/1 - # PATCH/PUT /people/1.json - def update - respond_to do |format| - if @person.update(person_params) - format.html { redirect_to @person, notice: 'Person was successfully updated.' } - format.json { render :show, status: :ok, location: @person } - else - format.html { render :edit } - format.json { render json: @person.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /people/1 - # DELETE /people/1.json - def destroy - @person.destroy - respond_to do |format| - format.html { redirect_to people_url, notice: 'Person was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_person - @person = Person.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def person_params - params.require(:person).permit(:first_name, :last_name, :addr_route, :addr_city, :addr_state, :addr_zip, :username, :pass_hash, :pass_salt, :bio, :birth_date, :gender, :height_in_inches, :weight_in_pounds, :shoe_size) - end -end diff --git a/Team-Manager/app/controllers/phone_numbers_controller.rb b/Team-Manager/app/controllers/phone_numbers_controller.rb deleted file mode 100644 index ffce9b0..0000000 --- a/Team-Manager/app/controllers/phone_numbers_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class PhoneNumbersController < ApplicationController - before_action :set_phone_number, only: [:show, :edit, :update, :destroy] - - # GET /phone_numbers - # GET /phone_numbers.json - def index - @phone_numbers = PhoneNumber.all - end - - # GET /phone_numbers/1 - # GET /phone_numbers/1.json - def show - end - - # GET /phone_numbers/new - def new - @phone_number = PhoneNumber.new - end - - # GET /phone_numbers/1/edit - def edit - end - - # POST /phone_numbers - # POST /phone_numbers.json - def create - @phone_number = PhoneNumber.new(phone_number_params) - - respond_to do |format| - if @phone_number.save - format.html { redirect_to @phone_number, notice: 'Phone number was successfully created.' } - format.json { render :show, status: :created, location: @phone_number } - else - format.html { render :new } - format.json { render json: @phone_number.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /phone_numbers/1 - # PATCH/PUT /phone_numbers/1.json - def update - respond_to do |format| - if @phone_number.update(phone_number_params) - format.html { redirect_to @phone_number, notice: 'Phone number was successfully updated.' } - format.json { render :show, status: :ok, location: @phone_number } - else - format.html { render :edit } - format.json { render json: @phone_number.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /phone_numbers/1 - # DELETE /phone_numbers/1.json - def destroy - @phone_number.destroy - respond_to do |format| - format.html { redirect_to phone_numbers_url, notice: 'Phone number was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_phone_number - @phone_number = PhoneNumber.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def phone_number_params - params.require(:phone_number).permit(:phone, :person_id) - end -end diff --git a/Team-Manager/app/controllers/player_statistics_controller.rb b/Team-Manager/app/controllers/player_statistics_controller.rb deleted file mode 100644 index 596b610..0000000 --- a/Team-Manager/app/controllers/player_statistics_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class PlayerStatisticsController < ApplicationController - before_action :set_player_statistic, only: [:show, :edit, :update, :destroy] - - # GET /player_statistics - # GET /player_statistics.json - def index - @player_statistics = PlayerStatistic.all - end - - # GET /player_statistics/1 - # GET /player_statistics/1.json - def show - end - - # GET /player_statistics/new - def new - @player_statistic = PlayerStatistic.new - end - - # GET /player_statistics/1/edit - def edit - end - - # POST /player_statistics - # POST /player_statistics.json - def create - @player_statistic = PlayerStatistic.new(player_statistic_params) - - respond_to do |format| - if @player_statistic.save - format.html { redirect_to @player_statistic, notice: 'Player statistic was successfully created.' } - format.json { render :show, status: :created, location: @player_statistic } - else - format.html { render :new } - format.json { render json: @player_statistic.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /player_statistics/1 - # PATCH/PUT /player_statistics/1.json - def update - respond_to do |format| - if @player_statistic.update(player_statistic_params) - format.html { redirect_to @player_statistic, notice: 'Player statistic was successfully updated.' } - format.json { render :show, status: :ok, location: @player_statistic } - else - format.html { render :edit } - format.json { render json: @player_statistic.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /player_statistics/1 - # DELETE /player_statistics/1.json - def destroy - @player_statistic.destroy - respond_to do |format| - format.html { redirect_to player_statistics_url, notice: 'Player statistic was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_player_statistic - @player_statistic = PlayerStatistic.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def player_statistic_params - params.require(:player_statistic).permit(:player_id_id, :statistic_type, :statistic_value, :date_recorded, :stat_id) - end -end diff --git a/Team-Manager/app/controllers/players_controller.rb b/Team-Manager/app/controllers/players_controller.rb deleted file mode 100644 index 73cdd71..0000000 --- a/Team-Manager/app/controllers/players_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class PlayersController < ApplicationController - before_action :set_player, only: [:show, :edit, :update, :destroy] - - # GET /players - # GET /players.json - def index - @players = Player.all - end - - # GET /players/1 - # GET /players/1.json - def show - end - - # GET /players/new - def new - @player = Player.new - end - - # GET /players/1/edit - def edit - end - - # POST /players - # POST /players.json - def create - @player = Player.new(player_params) - - respond_to do |format| - if @player.save - format.html { redirect_to @player, notice: 'Player was successfully created.' } - format.json { render :show, status: :created, location: @player } - else - format.html { render :new } - format.json { render json: @player.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /players/1 - # PATCH/PUT /players/1.json - def update - respond_to do |format| - if @player.update(player_params) - format.html { redirect_to @player, notice: 'Player was successfully updated.' } - format.json { render :show, status: :ok, location: @player } - else - format.html { render :edit } - format.json { render json: @player.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /players/1 - # DELETE /players/1.json - def destroy - @player.destroy - respond_to do |format| - format.html { redirect_to players_url, notice: 'Player was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_player - @player = Player.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def player_params - params.require(:player).permit(:player_coach_id_id, :player_jersey_id, :team_join_date, :team_left_date) - end -end diff --git a/Team-Manager/app/controllers/team_people_controller.rb b/Team-Manager/app/controllers/team_people_controller.rb deleted file mode 100644 index 15c9433..0000000 --- a/Team-Manager/app/controllers/team_people_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class TeamPeopleController < ApplicationController - before_action :set_team_person, only: [:show, :edit, :update, :destroy] - - # GET /team_people - # GET /team_people.json - def index - @team_people = TeamPerson.all - end - - # GET /team_people/1 - # GET /team_people/1.json - def show - end - - # GET /team_people/new - def new - @team_person = TeamPerson.new - end - - # GET /team_people/1/edit - def edit - end - - # POST /team_people - # POST /team_people.json - def create - @team_person = TeamPerson.new(team_person_params) - - respond_to do |format| - if @team_person.save - format.html { redirect_to @team_person, notice: 'Team person was successfully created.' } - format.json { render :show, status: :created, location: @team_person } - else - format.html { render :new } - format.json { render json: @team_person.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /team_people/1 - # PATCH/PUT /team_people/1.json - def update - respond_to do |format| - if @team_person.update(team_person_params) - format.html { redirect_to @team_person, notice: 'Team person was successfully updated.' } - format.json { render :show, status: :ok, location: @team_person } - else - format.html { render :edit } - format.json { render json: @team_person.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /team_people/1 - # DELETE /team_people/1.json - def destroy - @team_person.destroy - respond_to do |format| - format.html { redirect_to team_people_url, notice: 'Team person was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_team_person - @team_person = TeamPerson.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def team_person_params - params.require(:team_person).permit(:person_id_id, :team_id_id) - end -end diff --git a/Team-Manager/app/controllers/teams_controller.rb b/Team-Manager/app/controllers/teams_controller.rb deleted file mode 100644 index 8d9fa87..0000000 --- a/Team-Manager/app/controllers/teams_controller.rb +++ /dev/null @@ -1,74 +0,0 @@ -class TeamsController < ApplicationController - before_action :set_team, only: [:show, :edit, :update, :destroy] - - # GET /teams - # GET /teams.json - def index - @teams = Team.all - end - - # GET /teams/1 - # GET /teams/1.json - def show - end - - # GET /teams/new - def new - @team = Team.new - end - - # GET /teams/1/edit - def edit - end - - # POST /teams - # POST /teams.json - def create - @team = Team.new(team_params) - - respond_to do |format| - if @team.save - format.html { redirect_to @team, notice: 'Team was successfully created.' } - format.json { render :show, status: :created, location: @team } - else - format.html { render :new } - format.json { render json: @team.errors, status: :unprocessable_entity } - end - end - end - - # PATCH/PUT /teams/1 - # PATCH/PUT /teams/1.json - def update - respond_to do |format| - if @team.update(team_params) - format.html { redirect_to @team, notice: 'Team was successfully updated.' } - format.json { render :show, status: :ok, location: @team } - else - format.html { render :edit } - format.json { render json: @team.errors, status: :unprocessable_entity } - end - end - end - - # DELETE /teams/1 - # DELETE /teams/1.json - def destroy - @team.destroy - respond_to do |format| - format.html { redirect_to teams_url, notice: 'Team was successfully destroyed.' } - format.json { head :no_content } - end - end - - private - # Use callbacks to share common setup or constraints between actions. - def set_team - @team = Team.find(params[:id]) - end - - # Never trust parameters from the scary internet, only allow the white list through. - def team_params - params.require(:team).permit(:team_id, :organization_id, :team_name, :competitive, :age_group) - end -end diff --git a/Team-Manager/app/helpers/application_helper.rb b/Team-Manager/app/helpers/application_helper.rb deleted file mode 100644 index de6be79..0000000 --- a/Team-Manager/app/helpers/application_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module ApplicationHelper -end diff --git a/Team-Manager/app/helpers/certifications_helper.rb b/Team-Manager/app/helpers/certifications_helper.rb deleted file mode 100644 index 906dc2e..0000000 --- a/Team-Manager/app/helpers/certifications_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module CertificationsHelper -end diff --git a/Team-Manager/app/helpers/coaches_helper.rb b/Team-Manager/app/helpers/coaches_helper.rb deleted file mode 100644 index 4a533de..0000000 --- a/Team-Manager/app/helpers/coaches_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module CoachesHelper -end diff --git a/Team-Manager/app/helpers/emails_helper.rb b/Team-Manager/app/helpers/emails_helper.rb deleted file mode 100644 index b4dc6ec..0000000 --- a/Team-Manager/app/helpers/emails_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module EmailsHelper -end diff --git a/Team-Manager/app/helpers/event_property_maps_helper.rb b/Team-Manager/app/helpers/event_property_maps_helper.rb deleted file mode 100644 index 94eeab3..0000000 --- a/Team-Manager/app/helpers/event_property_maps_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module EventPropertyMapsHelper -end diff --git a/Team-Manager/app/helpers/event_types_helper.rb b/Team-Manager/app/helpers/event_types_helper.rb deleted file mode 100644 index bf74a6e..0000000 --- a/Team-Manager/app/helpers/event_types_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module EventTypesHelper -end diff --git a/Team-Manager/app/helpers/events_helper.rb b/Team-Manager/app/helpers/events_helper.rb deleted file mode 100644 index 8a9a878..0000000 --- a/Team-Manager/app/helpers/events_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module EventsHelper -end diff --git a/Team-Manager/app/helpers/organization_teams_helper.rb b/Team-Manager/app/helpers/organization_teams_helper.rb deleted file mode 100644 index 3564b7e..0000000 --- a/Team-Manager/app/helpers/organization_teams_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module OrganizationTeamsHelper -end diff --git a/Team-Manager/app/helpers/organizations_helper.rb b/Team-Manager/app/helpers/organizations_helper.rb deleted file mode 100644 index 24cc9a8..0000000 --- a/Team-Manager/app/helpers/organizations_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module OrganizationsHelper -end diff --git a/Team-Manager/app/helpers/parent_children_helper.rb b/Team-Manager/app/helpers/parent_children_helper.rb deleted file mode 100644 index e9f7899..0000000 --- a/Team-Manager/app/helpers/parent_children_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module ParentChildrenHelper -end diff --git a/Team-Manager/app/helpers/people_helper.rb b/Team-Manager/app/helpers/people_helper.rb deleted file mode 100644 index b682fbf..0000000 --- a/Team-Manager/app/helpers/people_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module PeopleHelper -end diff --git a/Team-Manager/app/helpers/phone_numbers_helper.rb b/Team-Manager/app/helpers/phone_numbers_helper.rb deleted file mode 100644 index cb4f200..0000000 --- a/Team-Manager/app/helpers/phone_numbers_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module PhoneNumbersHelper -end diff --git a/Team-Manager/app/helpers/player_statistics_helper.rb b/Team-Manager/app/helpers/player_statistics_helper.rb deleted file mode 100644 index 25bc15e..0000000 --- a/Team-Manager/app/helpers/player_statistics_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module PlayerStatisticsHelper -end diff --git a/Team-Manager/app/helpers/players_helper.rb b/Team-Manager/app/helpers/players_helper.rb deleted file mode 100644 index e8f775c..0000000 --- a/Team-Manager/app/helpers/players_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module PlayersHelper -end diff --git a/Team-Manager/app/helpers/team_people_helper.rb b/Team-Manager/app/helpers/team_people_helper.rb deleted file mode 100644 index ce77501..0000000 --- a/Team-Manager/app/helpers/team_people_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module TeamPeopleHelper -end diff --git a/Team-Manager/app/helpers/teams_helper.rb b/Team-Manager/app/helpers/teams_helper.rb deleted file mode 100644 index 5fb41eb..0000000 --- a/Team-Manager/app/helpers/teams_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module TeamsHelper -end diff --git a/Team-Manager/app/jobs/application_job.rb b/Team-Manager/app/jobs/application_job.rb deleted file mode 100644 index a009ace..0000000 --- a/Team-Manager/app/jobs/application_job.rb +++ /dev/null @@ -1,2 +0,0 @@ -class ApplicationJob < ActiveJob::Base -end diff --git a/Team-Manager/app/mailers/application_mailer.rb b/Team-Manager/app/mailers/application_mailer.rb deleted file mode 100644 index 286b223..0000000 --- a/Team-Manager/app/mailers/application_mailer.rb +++ /dev/null @@ -1,4 +0,0 @@ -class ApplicationMailer < ActionMailer::Base - default from: 'from@example.com' - layout 'mailer' -end diff --git a/Team-Manager/app/models/application_record.rb b/Team-Manager/app/models/application_record.rb deleted file mode 100644 index 10a4cba..0000000 --- a/Team-Manager/app/models/application_record.rb +++ /dev/null @@ -1,3 +0,0 @@ -class ApplicationRecord < ActiveRecord::Base - self.abstract_class = true -end diff --git a/Team-Manager/app/models/certification.rb b/Team-Manager/app/models/certification.rb deleted file mode 100644 index 8903e84..0000000 --- a/Team-Manager/app/models/certification.rb +++ /dev/null @@ -1,3 +0,0 @@ -class Certification < ApplicationRecord - belongs_to :person_id -end diff --git a/Team-Manager/app/models/coach.rb b/Team-Manager/app/models/coach.rb deleted file mode 100644 index 634ea51..0000000 --- a/Team-Manager/app/models/coach.rb +++ /dev/null @@ -1,3 +0,0 @@ -class Coach < ApplicationRecord - belongs_to :person_id -end diff --git a/Team-Manager/app/models/concerns/.keep b/Team-Manager/app/models/concerns/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/app/models/email.rb b/Team-Manager/app/models/email.rb deleted file mode 100644 index 531d48b..0000000 --- a/Team-Manager/app/models/email.rb +++ /dev/null @@ -1,3 +0,0 @@ -class Email < ApplicationRecord - belongs_to :person -end diff --git a/Team-Manager/app/models/event.rb b/Team-Manager/app/models/event.rb deleted file mode 100644 index 5b697f4..0000000 --- a/Team-Manager/app/models/event.rb +++ /dev/null @@ -1,4 +0,0 @@ -class Event < ApplicationRecord - belongs_to :event_type - belongs_to :team_id -end diff --git a/Team-Manager/app/models/event_property_map.rb b/Team-Manager/app/models/event_property_map.rb deleted file mode 100644 index 47973cd..0000000 --- a/Team-Manager/app/models/event_property_map.rb +++ /dev/null @@ -1,3 +0,0 @@ -class EventPropertyMap < ApplicationRecord - belongs_to :event_id -end diff --git a/Team-Manager/app/models/event_type.rb b/Team-Manager/app/models/event_type.rb deleted file mode 100644 index b071f50..0000000 --- a/Team-Manager/app/models/event_type.rb +++ /dev/null @@ -1,2 +0,0 @@ -class EventType < ApplicationRecord -end diff --git a/Team-Manager/app/models/organization.rb b/Team-Manager/app/models/organization.rb deleted file mode 100644 index b27a6b4..0000000 --- a/Team-Manager/app/models/organization.rb +++ /dev/null @@ -1,2 +0,0 @@ -class Organization < ApplicationRecord -end diff --git a/Team-Manager/app/models/organization_team.rb b/Team-Manager/app/models/organization_team.rb deleted file mode 100644 index 27741e9..0000000 --- a/Team-Manager/app/models/organization_team.rb +++ /dev/null @@ -1,4 +0,0 @@ -class OrganizationTeam < ApplicationRecord - belongs_to :organization_id - belongs_to :team_id -end diff --git a/Team-Manager/app/models/parent_child.rb b/Team-Manager/app/models/parent_child.rb deleted file mode 100644 index fcc6d86..0000000 --- a/Team-Manager/app/models/parent_child.rb +++ /dev/null @@ -1,4 +0,0 @@ -class ParentChild < ApplicationRecord - belongs_to :parent_id - belongs_to :child_id -end diff --git a/Team-Manager/app/models/person.rb b/Team-Manager/app/models/person.rb deleted file mode 100644 index a55b109..0000000 --- a/Team-Manager/app/models/person.rb +++ /dev/null @@ -1,4 +0,0 @@ -class Person < ApplicationRecord - has_many :Emails - has_many :Phone_numbers -end diff --git a/Team-Manager/app/models/phone_number.rb b/Team-Manager/app/models/phone_number.rb deleted file mode 100644 index 5625bd5..0000000 --- a/Team-Manager/app/models/phone_number.rb +++ /dev/null @@ -1,3 +0,0 @@ -class PhoneNumber < ApplicationRecord - belongs_to :person -end diff --git a/Team-Manager/app/models/player.rb b/Team-Manager/app/models/player.rb deleted file mode 100644 index 448bdc4..0000000 --- a/Team-Manager/app/models/player.rb +++ /dev/null @@ -1,3 +0,0 @@ -class Player < ApplicationRecord - belongs_to :player_coach_id -end diff --git a/Team-Manager/app/models/player_statistic.rb b/Team-Manager/app/models/player_statistic.rb deleted file mode 100644 index 37e625e..0000000 --- a/Team-Manager/app/models/player_statistic.rb +++ /dev/null @@ -1,3 +0,0 @@ -class PlayerStatistic < ApplicationRecord - belongs_to :player_id -end diff --git a/Team-Manager/app/models/team.rb b/Team-Manager/app/models/team.rb deleted file mode 100644 index 48a6c83..0000000 --- a/Team-Manager/app/models/team.rb +++ /dev/null @@ -1,2 +0,0 @@ -class Team < ApplicationRecord -end diff --git a/Team-Manager/app/models/team_person.rb b/Team-Manager/app/models/team_person.rb deleted file mode 100644 index a122384..0000000 --- a/Team-Manager/app/models/team_person.rb +++ /dev/null @@ -1,4 +0,0 @@ -class TeamPerson < ApplicationRecord - belongs_to :person_id - belongs_to :team_id -end diff --git a/Team-Manager/app/views/certifications/_certification.json.jbuilder b/Team-Manager/app/views/certifications/_certification.json.jbuilder deleted file mode 100644 index 4f5f305..0000000 --- a/Team-Manager/app/views/certifications/_certification.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! certification, :id, :person_id_id, :certification_name, :expiration_date, :note, :created_at, :updated_at -json.url certification_url(certification, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/certifications/_form.html.erb b/Team-Manager/app/views/certifications/_form.html.erb deleted file mode 100644 index fb5f457..0000000 --- a/Team-Manager/app/views/certifications/_form.html.erb +++ /dev/null @@ -1,37 +0,0 @@ -<%= form_for(certification) do |f| %> - <% if certification.errors.any? %> -
-

<%= pluralize(certification.errors.count, "error") %> prohibited this certification from being saved:

- - -
- <% end %> - -
- <%= f.label :person_id_id %> - <%= f.text_field :person_id_id %> -
- -
- <%= f.label :certification_name %> - <%= f.text_field :certification_name %> -
- -
- <%= f.label :expiration_date %> - <%= f.date_select :expiration_date %> -
- -
- <%= f.label :note %> - <%= f.text_area :note %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/certifications/edit.html.erb b/Team-Manager/app/views/certifications/edit.html.erb deleted file mode 100644 index 107468d..0000000 --- a/Team-Manager/app/views/certifications/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Certification

- -<%= render 'form', certification: @certification %> - -<%= link_to 'Show', @certification %> | -<%= link_to 'Back', certifications_path %> diff --git a/Team-Manager/app/views/certifications/index.html.erb b/Team-Manager/app/views/certifications/index.html.erb deleted file mode 100644 index e6b28af..0000000 --- a/Team-Manager/app/views/certifications/index.html.erb +++ /dev/null @@ -1,33 +0,0 @@ -

<%= notice %>

- -

Certifications

- - - - - - - - - - - - - - <% @certifications.each do |certification| %> - - - - - - - - - - <% end %> - -
PersonCertification nameExpiration dateNote
<%= certification.person_id %><%= certification.certification_name %><%= certification.expiration_date %><%= certification.note %><%= link_to 'Show', certification %><%= link_to 'Edit', edit_certification_path(certification) %><%= link_to 'Destroy', certification, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Certification', new_certification_path %> diff --git a/Team-Manager/app/views/certifications/index.json.jbuilder b/Team-Manager/app/views/certifications/index.json.jbuilder deleted file mode 100644 index d9e30b8..0000000 --- a/Team-Manager/app/views/certifications/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @certifications, partial: 'certifications/certification', as: :certification \ No newline at end of file diff --git a/Team-Manager/app/views/certifications/new.html.erb b/Team-Manager/app/views/certifications/new.html.erb deleted file mode 100644 index 8ff7737..0000000 --- a/Team-Manager/app/views/certifications/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Certification

- -<%= render 'form', certification: @certification %> - -<%= link_to 'Back', certifications_path %> diff --git a/Team-Manager/app/views/certifications/show.html.erb b/Team-Manager/app/views/certifications/show.html.erb deleted file mode 100644 index cbc3a07..0000000 --- a/Team-Manager/app/views/certifications/show.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -

<%= notice %>

- -

- Person: - <%= @certification.person_id %> -

- -

- Certification name: - <%= @certification.certification_name %> -

- -

- Expiration date: - <%= @certification.expiration_date %> -

- -

- Note: - <%= @certification.note %> -

- -<%= link_to 'Edit', edit_certification_path(@certification) %> | -<%= link_to 'Back', certifications_path %> diff --git a/Team-Manager/app/views/certifications/show.json.jbuilder b/Team-Manager/app/views/certifications/show.json.jbuilder deleted file mode 100644 index ebdc71c..0000000 --- a/Team-Manager/app/views/certifications/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "certifications/certification", certification: @certification \ No newline at end of file diff --git a/Team-Manager/app/views/coaches/_coach.json.jbuilder b/Team-Manager/app/views/coaches/_coach.json.jbuilder deleted file mode 100644 index fa3c4e1..0000000 --- a/Team-Manager/app/views/coaches/_coach.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! coach, :id, :person_id_id, :coach_type, :coach_year_began, :coach_year_ended, :coach_id, :created_at, :updated_at -json.url coach_url(coach, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/coaches/_form.html.erb b/Team-Manager/app/views/coaches/_form.html.erb deleted file mode 100644 index e25ddf5..0000000 --- a/Team-Manager/app/views/coaches/_form.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -<%= form_for(coach) do |f| %> - <% if coach.errors.any? %> -
-

<%= pluralize(coach.errors.count, "error") %> prohibited this coach from being saved:

- - -
- <% end %> - -
- <%= f.label :person_id_id %> - <%= f.text_field :person_id_id %> -
- -
- <%= f.label :coach_type %> - <%= f.text_field :coach_type %> -
- -
- <%= f.label :coach_year_began %> - <%= f.date_select :coach_year_began %> -
- -
- <%= f.label :coach_year_ended %> - <%= f.date_select :coach_year_ended %> -
- -
- <%= f.label :coach_id %> - <%= f.number_field :coach_id %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/coaches/edit.html.erb b/Team-Manager/app/views/coaches/edit.html.erb deleted file mode 100644 index 7cd2abf..0000000 --- a/Team-Manager/app/views/coaches/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Coach

- -<%= render 'form', coach: @coach %> - -<%= link_to 'Show', @coach %> | -<%= link_to 'Back', coaches_path %> diff --git a/Team-Manager/app/views/coaches/index.html.erb b/Team-Manager/app/views/coaches/index.html.erb deleted file mode 100644 index aa6be9c..0000000 --- a/Team-Manager/app/views/coaches/index.html.erb +++ /dev/null @@ -1,35 +0,0 @@ -

<%= notice %>

- -

Coaches

- - - - - - - - - - - - - - - <% @coaches.each do |coach| %> - - - - - - - - - - - <% end %> - -
PersonCoach typeCoach year beganCoach year endedCoach
<%= coach.person_id %><%= coach.coach_type %><%= coach.coach_year_began %><%= coach.coach_year_ended %><%= coach.coach_id %><%= link_to 'Show', coach %><%= link_to 'Edit', edit_coach_path(coach) %><%= link_to 'Destroy', coach, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Coach', new_coach_path %> diff --git a/Team-Manager/app/views/coaches/index.json.jbuilder b/Team-Manager/app/views/coaches/index.json.jbuilder deleted file mode 100644 index 5db85c6..0000000 --- a/Team-Manager/app/views/coaches/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @coaches, partial: 'coaches/coach', as: :coach \ No newline at end of file diff --git a/Team-Manager/app/views/coaches/new.html.erb b/Team-Manager/app/views/coaches/new.html.erb deleted file mode 100644 index f92ad88..0000000 --- a/Team-Manager/app/views/coaches/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Coach

- -<%= render 'form', coach: @coach %> - -<%= link_to 'Back', coaches_path %> diff --git a/Team-Manager/app/views/coaches/show.html.erb b/Team-Manager/app/views/coaches/show.html.erb deleted file mode 100644 index 6366c2b..0000000 --- a/Team-Manager/app/views/coaches/show.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

- Person: - <%= @coach.person_id %> -

- -

- Coach type: - <%= @coach.coach_type %> -

- -

- Coach year began: - <%= @coach.coach_year_began %> -

- -

- Coach year ended: - <%= @coach.coach_year_ended %> -

- -

- Coach: - <%= @coach.coach_id %> -

- -<%= link_to 'Edit', edit_coach_path(@coach) %> | -<%= link_to 'Back', coaches_path %> diff --git a/Team-Manager/app/views/coaches/show.json.jbuilder b/Team-Manager/app/views/coaches/show.json.jbuilder deleted file mode 100644 index 00a9132..0000000 --- a/Team-Manager/app/views/coaches/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "coaches/coach", coach: @coach \ No newline at end of file diff --git a/Team-Manager/app/views/emails/_email.json.jbuilder b/Team-Manager/app/views/emails/_email.json.jbuilder deleted file mode 100644 index 93410b1..0000000 --- a/Team-Manager/app/views/emails/_email.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! email, :id, :email, :person_id, :created_at, :updated_at -json.url email_url(email, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/emails/_form.html.erb b/Team-Manager/app/views/emails/_form.html.erb deleted file mode 100644 index 650ca4d..0000000 --- a/Team-Manager/app/views/emails/_form.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<%= form_for(email) do |f| %> - <% if email.errors.any? %> -
-

<%= pluralize(email.errors.count, "error") %> prohibited this email from being saved:

- - -
- <% end %> - -
- <%= f.label :email %> - <%= f.text_field :email %> -
- -
- <%= f.label :person_id %> - <%= f.text_field :person_id %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/emails/edit.html.erb b/Team-Manager/app/views/emails/edit.html.erb deleted file mode 100644 index 1431b41..0000000 --- a/Team-Manager/app/views/emails/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Email

- -<%= render 'form', email: @email %> - -<%= link_to 'Show', @email %> | -<%= link_to 'Back', emails_path %> diff --git a/Team-Manager/app/views/emails/index.html.erb b/Team-Manager/app/views/emails/index.html.erb deleted file mode 100644 index 04b9fb5..0000000 --- a/Team-Manager/app/views/emails/index.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

Emails

- - - - - - - - - - - - <% @emails.each do |email| %> - - - - - - - - <% end %> - -
EmailPerson
<%= email.email %><%= email.person %><%= link_to 'Show', email %><%= link_to 'Edit', edit_email_path(email) %><%= link_to 'Destroy', email, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Email', new_email_path %> diff --git a/Team-Manager/app/views/emails/index.json.jbuilder b/Team-Manager/app/views/emails/index.json.jbuilder deleted file mode 100644 index 0a79192..0000000 --- a/Team-Manager/app/views/emails/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @emails, partial: 'emails/email', as: :email \ No newline at end of file diff --git a/Team-Manager/app/views/emails/new.html.erb b/Team-Manager/app/views/emails/new.html.erb deleted file mode 100644 index 61c2c95..0000000 --- a/Team-Manager/app/views/emails/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Email

- -<%= render 'form', email: @email %> - -<%= link_to 'Back', emails_path %> diff --git a/Team-Manager/app/views/emails/show.html.erb b/Team-Manager/app/views/emails/show.html.erb deleted file mode 100644 index 215d0dc..0000000 --- a/Team-Manager/app/views/emails/show.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= notice %>

- -

- Email: - <%= @email.email %> -

- -

- Person: - <%= @email.person %> -

- -<%= link_to 'Edit', edit_email_path(@email) %> | -<%= link_to 'Back', emails_path %> diff --git a/Team-Manager/app/views/emails/show.json.jbuilder b/Team-Manager/app/views/emails/show.json.jbuilder deleted file mode 100644 index e3444f3..0000000 --- a/Team-Manager/app/views/emails/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "emails/email", email: @email \ No newline at end of file diff --git a/Team-Manager/app/views/event_property_maps/_event_property_map.json.jbuilder b/Team-Manager/app/views/event_property_maps/_event_property_map.json.jbuilder deleted file mode 100644 index e27d8eb..0000000 --- a/Team-Manager/app/views/event_property_maps/_event_property_map.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! event_property_map, :id, :event_id_id, :key, :value, :created_at, :updated_at -json.url event_property_map_url(event_property_map, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/event_property_maps/_form.html.erb b/Team-Manager/app/views/event_property_maps/_form.html.erb deleted file mode 100644 index 3625a73..0000000 --- a/Team-Manager/app/views/event_property_maps/_form.html.erb +++ /dev/null @@ -1,32 +0,0 @@ -<%= form_for(event_property_map) do |f| %> - <% if event_property_map.errors.any? %> -
-

<%= pluralize(event_property_map.errors.count, "error") %> prohibited this event_property_map from being saved:

- - -
- <% end %> - -
- <%= f.label :event_id_id %> - <%= f.text_field :event_id_id %> -
- -
- <%= f.label :key %> - <%= f.text_field :key %> -
- -
- <%= f.label :value %> - <%= f.text_field :value %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/event_property_maps/edit.html.erb b/Team-Manager/app/views/event_property_maps/edit.html.erb deleted file mode 100644 index 83def3d..0000000 --- a/Team-Manager/app/views/event_property_maps/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Event Property Map

- -<%= render 'form', event_property_map: @event_property_map %> - -<%= link_to 'Show', @event_property_map %> | -<%= link_to 'Back', event_property_maps_path %> diff --git a/Team-Manager/app/views/event_property_maps/index.html.erb b/Team-Manager/app/views/event_property_maps/index.html.erb deleted file mode 100644 index b6d6d91..0000000 --- a/Team-Manager/app/views/event_property_maps/index.html.erb +++ /dev/null @@ -1,31 +0,0 @@ -

<%= notice %>

- -

Event Property Maps

- - - - - - - - - - - - - <% @event_property_maps.each do |event_property_map| %> - - - - - - - - - <% end %> - -
EventKeyValue
<%= event_property_map.event_id %><%= event_property_map.key %><%= event_property_map.value %><%= link_to 'Show', event_property_map %><%= link_to 'Edit', edit_event_property_map_path(event_property_map) %><%= link_to 'Destroy', event_property_map, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Event Property Map', new_event_property_map_path %> diff --git a/Team-Manager/app/views/event_property_maps/index.json.jbuilder b/Team-Manager/app/views/event_property_maps/index.json.jbuilder deleted file mode 100644 index f1a67a1..0000000 --- a/Team-Manager/app/views/event_property_maps/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @event_property_maps, partial: 'event_property_maps/event_property_map', as: :event_property_map \ No newline at end of file diff --git a/Team-Manager/app/views/event_property_maps/new.html.erb b/Team-Manager/app/views/event_property_maps/new.html.erb deleted file mode 100644 index de00c22..0000000 --- a/Team-Manager/app/views/event_property_maps/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Event Property Map

- -<%= render 'form', event_property_map: @event_property_map %> - -<%= link_to 'Back', event_property_maps_path %> diff --git a/Team-Manager/app/views/event_property_maps/show.html.erb b/Team-Manager/app/views/event_property_maps/show.html.erb deleted file mode 100644 index 41aeae4..0000000 --- a/Team-Manager/app/views/event_property_maps/show.html.erb +++ /dev/null @@ -1,19 +0,0 @@ -

<%= notice %>

- -

- Event: - <%= @event_property_map.event_id %> -

- -

- Key: - <%= @event_property_map.key %> -

- -

- Value: - <%= @event_property_map.value %> -

- -<%= link_to 'Edit', edit_event_property_map_path(@event_property_map) %> | -<%= link_to 'Back', event_property_maps_path %> diff --git a/Team-Manager/app/views/event_property_maps/show.json.jbuilder b/Team-Manager/app/views/event_property_maps/show.json.jbuilder deleted file mode 100644 index 27dfce2..0000000 --- a/Team-Manager/app/views/event_property_maps/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "event_property_maps/event_property_map", event_property_map: @event_property_map \ No newline at end of file diff --git a/Team-Manager/app/views/event_types/_event_type.json.jbuilder b/Team-Manager/app/views/event_types/_event_type.json.jbuilder deleted file mode 100644 index 2afa195..0000000 --- a/Team-Manager/app/views/event_types/_event_type.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! event_type, :id, :event_type_id, :type_description, :created_at, :updated_at -json.url event_type_url(event_type, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/event_types/_form.html.erb b/Team-Manager/app/views/event_types/_form.html.erb deleted file mode 100644 index 1d76acc..0000000 --- a/Team-Manager/app/views/event_types/_form.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<%= form_for(event_type) do |f| %> - <% if event_type.errors.any? %> -
-

<%= pluralize(event_type.errors.count, "error") %> prohibited this event_type from being saved:

- - -
- <% end %> - -
- <%= f.label :event_type_id %> - <%= f.number_field :event_type_id %> -
- -
- <%= f.label :type_description %> - <%= f.text_field :type_description %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/event_types/edit.html.erb b/Team-Manager/app/views/event_types/edit.html.erb deleted file mode 100644 index c75bdaa..0000000 --- a/Team-Manager/app/views/event_types/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Event Type

- -<%= render 'form', event_type: @event_type %> - -<%= link_to 'Show', @event_type %> | -<%= link_to 'Back', event_types_path %> diff --git a/Team-Manager/app/views/event_types/index.html.erb b/Team-Manager/app/views/event_types/index.html.erb deleted file mode 100644 index df1bc3a..0000000 --- a/Team-Manager/app/views/event_types/index.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

Event Types

- - - - - - - - - - - - <% @event_types.each do |event_type| %> - - - - - - - - <% end %> - -
Event typeType description
<%= event_type.event_type_id %><%= event_type.type_description %><%= link_to 'Show', event_type %><%= link_to 'Edit', edit_event_type_path(event_type) %><%= link_to 'Destroy', event_type, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Event Type', new_event_type_path %> diff --git a/Team-Manager/app/views/event_types/index.json.jbuilder b/Team-Manager/app/views/event_types/index.json.jbuilder deleted file mode 100644 index f5efd5f..0000000 --- a/Team-Manager/app/views/event_types/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @event_types, partial: 'event_types/event_type', as: :event_type \ No newline at end of file diff --git a/Team-Manager/app/views/event_types/new.html.erb b/Team-Manager/app/views/event_types/new.html.erb deleted file mode 100644 index 8296355..0000000 --- a/Team-Manager/app/views/event_types/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Event Type

- -<%= render 'form', event_type: @event_type %> - -<%= link_to 'Back', event_types_path %> diff --git a/Team-Manager/app/views/event_types/show.html.erb b/Team-Manager/app/views/event_types/show.html.erb deleted file mode 100644 index e497542..0000000 --- a/Team-Manager/app/views/event_types/show.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= notice %>

- -

- Event type: - <%= @event_type.event_type_id %> -

- -

- Type description: - <%= @event_type.type_description %> -

- -<%= link_to 'Edit', edit_event_type_path(@event_type) %> | -<%= link_to 'Back', event_types_path %> diff --git a/Team-Manager/app/views/event_types/show.json.jbuilder b/Team-Manager/app/views/event_types/show.json.jbuilder deleted file mode 100644 index 3a08ca6..0000000 --- a/Team-Manager/app/views/event_types/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "event_types/event_type", event_type: @event_type \ No newline at end of file diff --git a/Team-Manager/app/views/events/_event.json.jbuilder b/Team-Manager/app/views/events/_event.json.jbuilder deleted file mode 100644 index 71449e8..0000000 --- a/Team-Manager/app/views/events/_event.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! event, :id, :event_id, :event_type_id, :event_datetime, :team_id_id, :created_by, :open_to_public, :created_at, :updated_at -json.url event_url(event, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/events/_form.html.erb b/Team-Manager/app/views/events/_form.html.erb deleted file mode 100644 index 4a06890..0000000 --- a/Team-Manager/app/views/events/_form.html.erb +++ /dev/null @@ -1,47 +0,0 @@ -<%= form_for(event) do |f| %> - <% if event.errors.any? %> -
-

<%= pluralize(event.errors.count, "error") %> prohibited this event from being saved:

- - -
- <% end %> - -
- <%= f.label :event_id %> - <%= f.number_field :event_id %> -
- -
- <%= f.label :event_type_id %> - <%= f.text_field :event_type_id %> -
- -
- <%= f.label :event_datetime %> - <%= f.date_select :event_datetime %> -
- -
- <%= f.label :team_id_id %> - <%= f.text_field :team_id_id %> -
- -
- <%= f.label :created_by %> - <%= f.number_field :created_by %> -
- -
- <%= f.label :open_to_public %> - <%= f.check_box :open_to_public %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/events/edit.html.erb b/Team-Manager/app/views/events/edit.html.erb deleted file mode 100644 index 6578b30..0000000 --- a/Team-Manager/app/views/events/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Event

- -<%= render 'form', event: @event %> - -<%= link_to 'Show', @event %> | -<%= link_to 'Back', events_path %> diff --git a/Team-Manager/app/views/events/index.html.erb b/Team-Manager/app/views/events/index.html.erb deleted file mode 100644 index 92bba56..0000000 --- a/Team-Manager/app/views/events/index.html.erb +++ /dev/null @@ -1,37 +0,0 @@ -

<%= notice %>

- -

Events

- - - - - - - - - - - - - - - - <% @events.each do |event| %> - - - - - - - - - - - - <% end %> - -
EventEvent typeEvent datetimeTeamCreated byOpen to public
<%= event.event_id %><%= event.event_type %><%= event.event_datetime %><%= event.team_id %><%= event.created_by %><%= event.open_to_public %><%= link_to 'Show', event %><%= link_to 'Edit', edit_event_path(event) %><%= link_to 'Destroy', event, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Event', new_event_path %> diff --git a/Team-Manager/app/views/events/index.json.jbuilder b/Team-Manager/app/views/events/index.json.jbuilder deleted file mode 100644 index df6aa4f..0000000 --- a/Team-Manager/app/views/events/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @events, partial: 'events/event', as: :event \ No newline at end of file diff --git a/Team-Manager/app/views/events/new.html.erb b/Team-Manager/app/views/events/new.html.erb deleted file mode 100644 index 1feff5f..0000000 --- a/Team-Manager/app/views/events/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Event

- -<%= render 'form', event: @event %> - -<%= link_to 'Back', events_path %> diff --git a/Team-Manager/app/views/events/show.html.erb b/Team-Manager/app/views/events/show.html.erb deleted file mode 100644 index 016e37d..0000000 --- a/Team-Manager/app/views/events/show.html.erb +++ /dev/null @@ -1,34 +0,0 @@ -

<%= notice %>

- -

- Event: - <%= @event.event_id %> -

- -

- Event type: - <%= @event.event_type %> -

- -

- Event datetime: - <%= @event.event_datetime %> -

- -

- Team: - <%= @event.team_id %> -

- -

- Created by: - <%= @event.created_by %> -

- -

- Open to public: - <%= @event.open_to_public %> -

- -<%= link_to 'Edit', edit_event_path(@event) %> | -<%= link_to 'Back', events_path %> diff --git a/Team-Manager/app/views/events/show.json.jbuilder b/Team-Manager/app/views/events/show.json.jbuilder deleted file mode 100644 index 7e59004..0000000 --- a/Team-Manager/app/views/events/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "events/event", event: @event \ No newline at end of file diff --git a/Team-Manager/app/views/layouts/application.html.erb b/Team-Manager/app/views/layouts/application.html.erb deleted file mode 100644 index b4a753f..0000000 --- a/Team-Manager/app/views/layouts/application.html.erb +++ /dev/null @@ -1,14 +0,0 @@ - - - - TeamManager - <%= csrf_meta_tags %> - - <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> - <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> - - - - <%= yield %> - - diff --git a/Team-Manager/app/views/layouts/mailer.html.erb b/Team-Manager/app/views/layouts/mailer.html.erb deleted file mode 100644 index cbd34d2..0000000 --- a/Team-Manager/app/views/layouts/mailer.html.erb +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - <%= yield %> - - diff --git a/Team-Manager/app/views/layouts/mailer.text.erb b/Team-Manager/app/views/layouts/mailer.text.erb deleted file mode 100644 index 37f0bdd..0000000 --- a/Team-Manager/app/views/layouts/mailer.text.erb +++ /dev/null @@ -1 +0,0 @@ -<%= yield %> diff --git a/Team-Manager/app/views/organization_teams/_form.html.erb b/Team-Manager/app/views/organization_teams/_form.html.erb deleted file mode 100644 index 5633a35..0000000 --- a/Team-Manager/app/views/organization_teams/_form.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<%= form_for(organization_team) do |f| %> - <% if organization_team.errors.any? %> -
-

<%= pluralize(organization_team.errors.count, "error") %> prohibited this organization_team from being saved:

- - -
- <% end %> - -
- <%= f.label :organization_id_id %> - <%= f.text_field :organization_id_id %> -
- -
- <%= f.label :team_id_id %> - <%= f.text_field :team_id_id %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/organization_teams/_organization_team.json.jbuilder b/Team-Manager/app/views/organization_teams/_organization_team.json.jbuilder deleted file mode 100644 index 49fe398..0000000 --- a/Team-Manager/app/views/organization_teams/_organization_team.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! organization_team, :id, :organization_id_id, :team_id_id, :created_at, :updated_at -json.url organization_team_url(organization_team, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/organization_teams/edit.html.erb b/Team-Manager/app/views/organization_teams/edit.html.erb deleted file mode 100644 index 2a5000b..0000000 --- a/Team-Manager/app/views/organization_teams/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Organization Team

- -<%= render 'form', organization_team: @organization_team %> - -<%= link_to 'Show', @organization_team %> | -<%= link_to 'Back', organization_teams_path %> diff --git a/Team-Manager/app/views/organization_teams/index.html.erb b/Team-Manager/app/views/organization_teams/index.html.erb deleted file mode 100644 index b5d41eb..0000000 --- a/Team-Manager/app/views/organization_teams/index.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

Organization Teams

- - - - - - - - - - - - <% @organization_teams.each do |organization_team| %> - - - - - - - - <% end %> - -
OrganizationTeam
<%= organization_team.organization_id %><%= organization_team.team_id %><%= link_to 'Show', organization_team %><%= link_to 'Edit', edit_organization_team_path(organization_team) %><%= link_to 'Destroy', organization_team, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Organization Team', new_organization_team_path %> diff --git a/Team-Manager/app/views/organization_teams/index.json.jbuilder b/Team-Manager/app/views/organization_teams/index.json.jbuilder deleted file mode 100644 index f8f4082..0000000 --- a/Team-Manager/app/views/organization_teams/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @organization_teams, partial: 'organization_teams/organization_team', as: :organization_team \ No newline at end of file diff --git a/Team-Manager/app/views/organization_teams/new.html.erb b/Team-Manager/app/views/organization_teams/new.html.erb deleted file mode 100644 index be683c7..0000000 --- a/Team-Manager/app/views/organization_teams/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Organization Team

- -<%= render 'form', organization_team: @organization_team %> - -<%= link_to 'Back', organization_teams_path %> diff --git a/Team-Manager/app/views/organization_teams/show.html.erb b/Team-Manager/app/views/organization_teams/show.html.erb deleted file mode 100644 index a56ee4c..0000000 --- a/Team-Manager/app/views/organization_teams/show.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= notice %>

- -

- Organization: - <%= @organization_team.organization_id %> -

- -

- Team: - <%= @organization_team.team_id %> -

- -<%= link_to 'Edit', edit_organization_team_path(@organization_team) %> | -<%= link_to 'Back', organization_teams_path %> diff --git a/Team-Manager/app/views/organization_teams/show.json.jbuilder b/Team-Manager/app/views/organization_teams/show.json.jbuilder deleted file mode 100644 index c98706f..0000000 --- a/Team-Manager/app/views/organization_teams/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "organization_teams/organization_team", organization_team: @organization_team \ No newline at end of file diff --git a/Team-Manager/app/views/organizations/_form.html.erb b/Team-Manager/app/views/organizations/_form.html.erb deleted file mode 100644 index adf119c..0000000 --- a/Team-Manager/app/views/organizations/_form.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<%= form_for(organization) do |f| %> - <% if organization.errors.any? %> -
-

<%= pluralize(organization.errors.count, "error") %> prohibited this organization from being saved:

- - -
- <% end %> - -
- <%= f.label :organization_id %> - <%= f.number_field :organization_id %> -
- -
- <%= f.label :name %> - <%= f.text_field :name %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/organizations/_organization.json.jbuilder b/Team-Manager/app/views/organizations/_organization.json.jbuilder deleted file mode 100644 index be773f3..0000000 --- a/Team-Manager/app/views/organizations/_organization.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! organization, :id, :organization_id, :name, :created_at, :updated_at -json.url organization_url(organization, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/organizations/edit.html.erb b/Team-Manager/app/views/organizations/edit.html.erb deleted file mode 100644 index 0514ab1..0000000 --- a/Team-Manager/app/views/organizations/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Organization

- -<%= render 'form', organization: @organization %> - -<%= link_to 'Show', @organization %> | -<%= link_to 'Back', organizations_path %> diff --git a/Team-Manager/app/views/organizations/index.html.erb b/Team-Manager/app/views/organizations/index.html.erb deleted file mode 100644 index 19f370e..0000000 --- a/Team-Manager/app/views/organizations/index.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

Organizations

- - - - - - - - - - - - <% @organizations.each do |organization| %> - - - - - - - - <% end %> - -
OrganizationName
<%= organization.organization_id %><%= organization.name %><%= link_to 'Show', organization %><%= link_to 'Edit', edit_organization_path(organization) %><%= link_to 'Destroy', organization, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Organization', new_organization_path %> diff --git a/Team-Manager/app/views/organizations/index.json.jbuilder b/Team-Manager/app/views/organizations/index.json.jbuilder deleted file mode 100644 index 4b1811f..0000000 --- a/Team-Manager/app/views/organizations/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @organizations, partial: 'organizations/organization', as: :organization \ No newline at end of file diff --git a/Team-Manager/app/views/organizations/new.html.erb b/Team-Manager/app/views/organizations/new.html.erb deleted file mode 100644 index be2be97..0000000 --- a/Team-Manager/app/views/organizations/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Organization

- -<%= render 'form', organization: @organization %> - -<%= link_to 'Back', organizations_path %> diff --git a/Team-Manager/app/views/organizations/show.html.erb b/Team-Manager/app/views/organizations/show.html.erb deleted file mode 100644 index f62c0bc..0000000 --- a/Team-Manager/app/views/organizations/show.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= notice %>

- -

- Organization: - <%= @organization.organization_id %> -

- -

- Name: - <%= @organization.name %> -

- -<%= link_to 'Edit', edit_organization_path(@organization) %> | -<%= link_to 'Back', organizations_path %> diff --git a/Team-Manager/app/views/organizations/show.json.jbuilder b/Team-Manager/app/views/organizations/show.json.jbuilder deleted file mode 100644 index 1f684e2..0000000 --- a/Team-Manager/app/views/organizations/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "organizations/organization", organization: @organization \ No newline at end of file diff --git a/Team-Manager/app/views/parent_children/_form.html.erb b/Team-Manager/app/views/parent_children/_form.html.erb deleted file mode 100644 index a665636..0000000 --- a/Team-Manager/app/views/parent_children/_form.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<%= form_for(parent_child) do |f| %> - <% if parent_child.errors.any? %> -
-

<%= pluralize(parent_child.errors.count, "error") %> prohibited this parent_child from being saved:

- - -
- <% end %> - -
- <%= f.label :parent_id_id %> - <%= f.text_field :parent_id_id %> -
- -
- <%= f.label :child_id_id %> - <%= f.text_field :child_id_id %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/parent_children/_parent_child.json.jbuilder b/Team-Manager/app/views/parent_children/_parent_child.json.jbuilder deleted file mode 100644 index 7f29a0d..0000000 --- a/Team-Manager/app/views/parent_children/_parent_child.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! parent_child, :id, :parent_id_id, :child_id_id, :created_at, :updated_at -json.url parent_child_url(parent_child, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/parent_children/edit.html.erb b/Team-Manager/app/views/parent_children/edit.html.erb deleted file mode 100644 index de09f45..0000000 --- a/Team-Manager/app/views/parent_children/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Parent Child

- -<%= render 'form', parent_child: @parent_child %> - -<%= link_to 'Show', @parent_child %> | -<%= link_to 'Back', parent_children_path %> diff --git a/Team-Manager/app/views/parent_children/index.html.erb b/Team-Manager/app/views/parent_children/index.html.erb deleted file mode 100644 index f9ad56b..0000000 --- a/Team-Manager/app/views/parent_children/index.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

Parent Children

- - - - - - - - - - - - <% @parent_children.each do |parent_child| %> - - - - - - - - <% end %> - -
ParentChild
<%= parent_child.parent_id %><%= parent_child.child_id %><%= link_to 'Show', parent_child %><%= link_to 'Edit', edit_parent_child_path(parent_child) %><%= link_to 'Destroy', parent_child, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Parent Child', new_parent_child_path %> diff --git a/Team-Manager/app/views/parent_children/index.json.jbuilder b/Team-Manager/app/views/parent_children/index.json.jbuilder deleted file mode 100644 index f6ce5f5..0000000 --- a/Team-Manager/app/views/parent_children/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @parent_children, partial: 'parent_children/parent_child', as: :parent_child \ No newline at end of file diff --git a/Team-Manager/app/views/parent_children/new.html.erb b/Team-Manager/app/views/parent_children/new.html.erb deleted file mode 100644 index 363e55d..0000000 --- a/Team-Manager/app/views/parent_children/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Parent Child

- -<%= render 'form', parent_child: @parent_child %> - -<%= link_to 'Back', parent_children_path %> diff --git a/Team-Manager/app/views/parent_children/show.html.erb b/Team-Manager/app/views/parent_children/show.html.erb deleted file mode 100644 index 8543cdb..0000000 --- a/Team-Manager/app/views/parent_children/show.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= notice %>

- -

- Parent: - <%= @parent_child.parent_id %> -

- -

- Child: - <%= @parent_child.child_id %> -

- -<%= link_to 'Edit', edit_parent_child_path(@parent_child) %> | -<%= link_to 'Back', parent_children_path %> diff --git a/Team-Manager/app/views/parent_children/show.json.jbuilder b/Team-Manager/app/views/parent_children/show.json.jbuilder deleted file mode 100644 index a46ea70..0000000 --- a/Team-Manager/app/views/parent_children/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "parent_children/parent_child", parent_child: @parent_child \ No newline at end of file diff --git a/Team-Manager/app/views/people/_form.html.erb b/Team-Manager/app/views/people/_form.html.erb deleted file mode 100644 index dd42b1d..0000000 --- a/Team-Manager/app/views/people/_form.html.erb +++ /dev/null @@ -1,92 +0,0 @@ -<%= form_for(person) do |f| %> - <% if person.errors.any? %> -
-

<%= pluralize(person.errors.count, "error") %> prohibited this person from being saved:

- - -
- <% end %> - -
- <%= f.label :first_name %> - <%= f.text_field :first_name %> -
- -
- <%= f.label :last_name %> - <%= f.text_field :last_name %> -
- -
- <%= f.label :addr_route %> - <%= f.text_field :addr_route %> -
- -
- <%= f.label :addr_city %> - <%= f.text_field :addr_city %> -
- -
- <%= f.label :addr_state %> - <%= f.text_field :addr_state %> -
- -
- <%= f.label :addr_zip %> - <%= f.number_field :addr_zip %> -
- -
- <%= f.label :username %> - <%= f.text_field :username %> -
- -
- <%= f.label :pass_hash %> - <%= f.text_field :pass_hash %> -
- -
- <%= f.label :pass_salt %> - <%= f.text_field :pass_salt %> -
- -
- <%= f.label :bio %> - <%= f.text_area :bio %> -
- -
- <%= f.label :birth_date %> - <%= f.date_select :birth_date %> -
- -
- <%= f.label :gender %> - <%= f.text_field :gender %> -
- -
- <%= f.label :height_in_inches %> - <%= f.number_field :height_in_inches %> -
- -
- <%= f.label :weight_in_pounds %> - <%= f.number_field :weight_in_pounds %> -
- -
- <%= f.label :shoe_size %> - <%= f.text_field :shoe_size %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/people/_person.json.jbuilder b/Team-Manager/app/views/people/_person.json.jbuilder deleted file mode 100644 index 2d9df6c..0000000 --- a/Team-Manager/app/views/people/_person.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! person, :id, :first_name, :last_name, :addr_route, :addr_city, :addr_state, :addr_zip, :username, :pass_hash, :pass_salt, :bio, :birth_date, :gender, :height_in_inches, :weight_in_pounds, :shoe_size, :created_at, :updated_at -json.url person_url(person, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/people/edit.html.erb b/Team-Manager/app/views/people/edit.html.erb deleted file mode 100644 index f5faa28..0000000 --- a/Team-Manager/app/views/people/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Person

- -<%= render 'form', person: @person %> - -<%= link_to 'Show', @person %> | -<%= link_to 'Back', people_path %> diff --git a/Team-Manager/app/views/people/index.html.erb b/Team-Manager/app/views/people/index.html.erb deleted file mode 100644 index bfef260..0000000 --- a/Team-Manager/app/views/people/index.html.erb +++ /dev/null @@ -1,55 +0,0 @@ -

<%= notice %>

- -

People

- - - - - - - - - - - - - - - - - - - - - - - - - <% @people.each do |person| %> - - - - - - - - - - - - - - - - - - - - - <% end %> - -
First nameLast nameAddr routeAddr cityAddr stateAddr zipUsernamePass hashPass saltBioBirth dateGenderHeight in inchesWeight in poundsShoe size
<%= person.first_name %><%= person.last_name %><%= person.addr_route %><%= person.addr_city %><%= person.addr_state %><%= person.addr_zip %><%= person.username %><%= person.pass_hash %><%= person.pass_salt %><%= person.bio %><%= person.birth_date %><%= person.gender %><%= person.height_in_inches %><%= person.weight_in_pounds %><%= person.shoe_size %><%= link_to 'Show', person %><%= link_to 'Edit', edit_person_path(person) %><%= link_to 'Destroy', person, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Person', new_person_path %> diff --git a/Team-Manager/app/views/people/index.json.jbuilder b/Team-Manager/app/views/people/index.json.jbuilder deleted file mode 100644 index 5db71b9..0000000 --- a/Team-Manager/app/views/people/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @people, partial: 'people/person', as: :person \ No newline at end of file diff --git a/Team-Manager/app/views/people/new.html.erb b/Team-Manager/app/views/people/new.html.erb deleted file mode 100644 index 103bac0..0000000 --- a/Team-Manager/app/views/people/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Person

- -<%= render 'form', person: @person %> - -<%= link_to 'Back', people_path %> diff --git a/Team-Manager/app/views/people/show.html.erb b/Team-Manager/app/views/people/show.html.erb deleted file mode 100644 index d61832e..0000000 --- a/Team-Manager/app/views/people/show.html.erb +++ /dev/null @@ -1,79 +0,0 @@ -

<%= notice %>

- -

- First name: - <%= @person.first_name %> -

- -

- Last name: - <%= @person.last_name %> -

- -

- Addr route: - <%= @person.addr_route %> -

- -

- Addr city: - <%= @person.addr_city %> -

- -

- Addr state: - <%= @person.addr_state %> -

- -

- Addr zip: - <%= @person.addr_zip %> -

- -

- Username: - <%= @person.username %> -

- -

- Pass hash: - <%= @person.pass_hash %> -

- -

- Pass salt: - <%= @person.pass_salt %> -

- -

- Bio: - <%= @person.bio %> -

- -

- Birth date: - <%= @person.birth_date %> -

- -

- Gender: - <%= @person.gender %> -

- -

- Height in inches: - <%= @person.height_in_inches %> -

- -

- Weight in pounds: - <%= @person.weight_in_pounds %> -

- -

- Shoe size: - <%= @person.shoe_size %> -

- -<%= link_to 'Edit', edit_person_path(@person) %> | -<%= link_to 'Back', people_path %> diff --git a/Team-Manager/app/views/people/show.json.jbuilder b/Team-Manager/app/views/people/show.json.jbuilder deleted file mode 100644 index 727d7ec..0000000 --- a/Team-Manager/app/views/people/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "people/person", person: @person \ No newline at end of file diff --git a/Team-Manager/app/views/phone_numbers/_form.html.erb b/Team-Manager/app/views/phone_numbers/_form.html.erb deleted file mode 100644 index 67501ea..0000000 --- a/Team-Manager/app/views/phone_numbers/_form.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<%= form_for(phone_number) do |f| %> - <% if phone_number.errors.any? %> -
-

<%= pluralize(phone_number.errors.count, "error") %> prohibited this phone_number from being saved:

- - -
- <% end %> - -
- <%= f.label :phone %> - <%= f.text_field :phone %> -
- -
- <%= f.label :person_id %> - <%= f.text_field :person_id %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/phone_numbers/_phone_number.json.jbuilder b/Team-Manager/app/views/phone_numbers/_phone_number.json.jbuilder deleted file mode 100644 index 34649b9..0000000 --- a/Team-Manager/app/views/phone_numbers/_phone_number.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! phone_number, :id, :phone, :person_id, :created_at, :updated_at -json.url phone_number_url(phone_number, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/phone_numbers/edit.html.erb b/Team-Manager/app/views/phone_numbers/edit.html.erb deleted file mode 100644 index f69076d..0000000 --- a/Team-Manager/app/views/phone_numbers/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Phone Number

- -<%= render 'form', phone_number: @phone_number %> - -<%= link_to 'Show', @phone_number %> | -<%= link_to 'Back', phone_numbers_path %> diff --git a/Team-Manager/app/views/phone_numbers/index.html.erb b/Team-Manager/app/views/phone_numbers/index.html.erb deleted file mode 100644 index 7d314a7..0000000 --- a/Team-Manager/app/views/phone_numbers/index.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

Phone Numbers

- - - - - - - - - - - - <% @phone_numbers.each do |phone_number| %> - - - - - - - - <% end %> - -
PhonePerson
<%= phone_number.phone %><%= phone_number.person %><%= link_to 'Show', phone_number %><%= link_to 'Edit', edit_phone_number_path(phone_number) %><%= link_to 'Destroy', phone_number, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Phone Number', new_phone_number_path %> diff --git a/Team-Manager/app/views/phone_numbers/index.json.jbuilder b/Team-Manager/app/views/phone_numbers/index.json.jbuilder deleted file mode 100644 index 4b32ac2..0000000 --- a/Team-Manager/app/views/phone_numbers/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @phone_numbers, partial: 'phone_numbers/phone_number', as: :phone_number \ No newline at end of file diff --git a/Team-Manager/app/views/phone_numbers/new.html.erb b/Team-Manager/app/views/phone_numbers/new.html.erb deleted file mode 100644 index f77b22a..0000000 --- a/Team-Manager/app/views/phone_numbers/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Phone Number

- -<%= render 'form', phone_number: @phone_number %> - -<%= link_to 'Back', phone_numbers_path %> diff --git a/Team-Manager/app/views/phone_numbers/show.html.erb b/Team-Manager/app/views/phone_numbers/show.html.erb deleted file mode 100644 index ca58bb5..0000000 --- a/Team-Manager/app/views/phone_numbers/show.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= notice %>

- -

- Phone: - <%= @phone_number.phone %> -

- -

- Person: - <%= @phone_number.person %> -

- -<%= link_to 'Edit', edit_phone_number_path(@phone_number) %> | -<%= link_to 'Back', phone_numbers_path %> diff --git a/Team-Manager/app/views/phone_numbers/show.json.jbuilder b/Team-Manager/app/views/phone_numbers/show.json.jbuilder deleted file mode 100644 index ce3e6f9..0000000 --- a/Team-Manager/app/views/phone_numbers/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "phone_numbers/phone_number", phone_number: @phone_number \ No newline at end of file diff --git a/Team-Manager/app/views/player_statistics/_form.html.erb b/Team-Manager/app/views/player_statistics/_form.html.erb deleted file mode 100644 index e71e8f8..0000000 --- a/Team-Manager/app/views/player_statistics/_form.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -<%= form_for(player_statistic) do |f| %> - <% if player_statistic.errors.any? %> -
-

<%= pluralize(player_statistic.errors.count, "error") %> prohibited this player_statistic from being saved:

- - -
- <% end %> - -
- <%= f.label :player_id_id %> - <%= f.text_field :player_id_id %> -
- -
- <%= f.label :statistic_type %> - <%= f.text_field :statistic_type %> -
- -
- <%= f.label :statistic_value %> - <%= f.text_field :statistic_value %> -
- -
- <%= f.label :date_recorded %> - <%= f.date_select :date_recorded %> -
- -
- <%= f.label :stat_id %> - <%= f.number_field :stat_id %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/player_statistics/_player_statistic.json.jbuilder b/Team-Manager/app/views/player_statistics/_player_statistic.json.jbuilder deleted file mode 100644 index 7beffe5..0000000 --- a/Team-Manager/app/views/player_statistics/_player_statistic.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! player_statistic, :id, :player_id_id, :statistic_type, :statistic_value, :date_recorded, :stat_id, :created_at, :updated_at -json.url player_statistic_url(player_statistic, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/player_statistics/edit.html.erb b/Team-Manager/app/views/player_statistics/edit.html.erb deleted file mode 100644 index a75c15d..0000000 --- a/Team-Manager/app/views/player_statistics/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Player Statistic

- -<%= render 'form', player_statistic: @player_statistic %> - -<%= link_to 'Show', @player_statistic %> | -<%= link_to 'Back', player_statistics_path %> diff --git a/Team-Manager/app/views/player_statistics/index.html.erb b/Team-Manager/app/views/player_statistics/index.html.erb deleted file mode 100644 index 0a371bf..0000000 --- a/Team-Manager/app/views/player_statistics/index.html.erb +++ /dev/null @@ -1,35 +0,0 @@ -

<%= notice %>

- -

Player Statistics

- - - - - - - - - - - - - - - <% @player_statistics.each do |player_statistic| %> - - - - - - - - - - - <% end %> - -
PlayerStatistic typeStatistic valueDate recordedStat
<%= player_statistic.player_id %><%= player_statistic.statistic_type %><%= player_statistic.statistic_value %><%= player_statistic.date_recorded %><%= player_statistic.stat_id %><%= link_to 'Show', player_statistic %><%= link_to 'Edit', edit_player_statistic_path(player_statistic) %><%= link_to 'Destroy', player_statistic, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Player Statistic', new_player_statistic_path %> diff --git a/Team-Manager/app/views/player_statistics/index.json.jbuilder b/Team-Manager/app/views/player_statistics/index.json.jbuilder deleted file mode 100644 index d90af0e..0000000 --- a/Team-Manager/app/views/player_statistics/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @player_statistics, partial: 'player_statistics/player_statistic', as: :player_statistic \ No newline at end of file diff --git a/Team-Manager/app/views/player_statistics/new.html.erb b/Team-Manager/app/views/player_statistics/new.html.erb deleted file mode 100644 index 5ffcfbb..0000000 --- a/Team-Manager/app/views/player_statistics/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Player Statistic

- -<%= render 'form', player_statistic: @player_statistic %> - -<%= link_to 'Back', player_statistics_path %> diff --git a/Team-Manager/app/views/player_statistics/show.html.erb b/Team-Manager/app/views/player_statistics/show.html.erb deleted file mode 100644 index 6dcdab1..0000000 --- a/Team-Manager/app/views/player_statistics/show.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

- Player: - <%= @player_statistic.player_id %> -

- -

- Statistic type: - <%= @player_statistic.statistic_type %> -

- -

- Statistic value: - <%= @player_statistic.statistic_value %> -

- -

- Date recorded: - <%= @player_statistic.date_recorded %> -

- -

- Stat: - <%= @player_statistic.stat_id %> -

- -<%= link_to 'Edit', edit_player_statistic_path(@player_statistic) %> | -<%= link_to 'Back', player_statistics_path %> diff --git a/Team-Manager/app/views/player_statistics/show.json.jbuilder b/Team-Manager/app/views/player_statistics/show.json.jbuilder deleted file mode 100644 index 49a8738..0000000 --- a/Team-Manager/app/views/player_statistics/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "player_statistics/player_statistic", player_statistic: @player_statistic \ No newline at end of file diff --git a/Team-Manager/app/views/players/_form.html.erb b/Team-Manager/app/views/players/_form.html.erb deleted file mode 100644 index 579bb03..0000000 --- a/Team-Manager/app/views/players/_form.html.erb +++ /dev/null @@ -1,37 +0,0 @@ -<%= form_for(player) do |f| %> - <% if player.errors.any? %> -
-

<%= pluralize(player.errors.count, "error") %> prohibited this player from being saved:

- - -
- <% end %> - -
- <%= f.label :player_coach_id_id %> - <%= f.text_field :player_coach_id_id %> -
- -
- <%= f.label :player_jersey_id %> - <%= f.number_field :player_jersey_id %> -
- -
- <%= f.label :team_join_date %> - <%= f.date_select :team_join_date %> -
- -
- <%= f.label :team_left_date %> - <%= f.date_select :team_left_date %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/players/_player.json.jbuilder b/Team-Manager/app/views/players/_player.json.jbuilder deleted file mode 100644 index 59c6d63..0000000 --- a/Team-Manager/app/views/players/_player.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! player, :id, :player_coach_id_id, :player_jersey_id, :team_join_date, :team_left_date, :created_at, :updated_at -json.url player_url(player, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/players/edit.html.erb b/Team-Manager/app/views/players/edit.html.erb deleted file mode 100644 index 708f779..0000000 --- a/Team-Manager/app/views/players/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Player

- -<%= render 'form', player: @player %> - -<%= link_to 'Show', @player %> | -<%= link_to 'Back', players_path %> diff --git a/Team-Manager/app/views/players/index.html.erb b/Team-Manager/app/views/players/index.html.erb deleted file mode 100644 index 7825690..0000000 --- a/Team-Manager/app/views/players/index.html.erb +++ /dev/null @@ -1,33 +0,0 @@ -

<%= notice %>

- -

Players

- - - - - - - - - - - - - - <% @players.each do |player| %> - - - - - - - - - - <% end %> - -
Player coachPlayer jerseyTeam join dateTeam left date
<%= player.player_coach_id %><%= player.player_jersey_id %><%= player.team_join_date %><%= player.team_left_date %><%= link_to 'Show', player %><%= link_to 'Edit', edit_player_path(player) %><%= link_to 'Destroy', player, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Player', new_player_path %> diff --git a/Team-Manager/app/views/players/index.json.jbuilder b/Team-Manager/app/views/players/index.json.jbuilder deleted file mode 100644 index b5f2544..0000000 --- a/Team-Manager/app/views/players/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @players, partial: 'players/player', as: :player \ No newline at end of file diff --git a/Team-Manager/app/views/players/new.html.erb b/Team-Manager/app/views/players/new.html.erb deleted file mode 100644 index 828eb7f..0000000 --- a/Team-Manager/app/views/players/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Player

- -<%= render 'form', player: @player %> - -<%= link_to 'Back', players_path %> diff --git a/Team-Manager/app/views/players/show.html.erb b/Team-Manager/app/views/players/show.html.erb deleted file mode 100644 index b9dfcee..0000000 --- a/Team-Manager/app/views/players/show.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -

<%= notice %>

- -

- Player coach: - <%= @player.player_coach_id %> -

- -

- Player jersey: - <%= @player.player_jersey_id %> -

- -

- Team join date: - <%= @player.team_join_date %> -

- -

- Team left date: - <%= @player.team_left_date %> -

- -<%= link_to 'Edit', edit_player_path(@player) %> | -<%= link_to 'Back', players_path %> diff --git a/Team-Manager/app/views/players/show.json.jbuilder b/Team-Manager/app/views/players/show.json.jbuilder deleted file mode 100644 index 9325530..0000000 --- a/Team-Manager/app/views/players/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "players/player", player: @player \ No newline at end of file diff --git a/Team-Manager/app/views/team_people/_form.html.erb b/Team-Manager/app/views/team_people/_form.html.erb deleted file mode 100644 index 87610db..0000000 --- a/Team-Manager/app/views/team_people/_form.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -<%= form_for(team_person) do |f| %> - <% if team_person.errors.any? %> -
-

<%= pluralize(team_person.errors.count, "error") %> prohibited this team_person from being saved:

- - -
- <% end %> - -
- <%= f.label :person_id_id %> - <%= f.text_field :person_id_id %> -
- -
- <%= f.label :team_id_id %> - <%= f.text_field :team_id_id %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/team_people/_team_person.json.jbuilder b/Team-Manager/app/views/team_people/_team_person.json.jbuilder deleted file mode 100644 index 6474a42..0000000 --- a/Team-Manager/app/views/team_people/_team_person.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! team_person, :id, :person_id_id, :team_id_id, :created_at, :updated_at -json.url team_person_url(team_person, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/team_people/edit.html.erb b/Team-Manager/app/views/team_people/edit.html.erb deleted file mode 100644 index 88a8310..0000000 --- a/Team-Manager/app/views/team_people/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Team Person

- -<%= render 'form', team_person: @team_person %> - -<%= link_to 'Show', @team_person %> | -<%= link_to 'Back', team_people_path %> diff --git a/Team-Manager/app/views/team_people/index.html.erb b/Team-Manager/app/views/team_people/index.html.erb deleted file mode 100644 index b913f56..0000000 --- a/Team-Manager/app/views/team_people/index.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

Team People

- - - - - - - - - - - - <% @team_people.each do |team_person| %> - - - - - - - - <% end %> - -
PersonTeam
<%= team_person.person_id %><%= team_person.team_id %><%= link_to 'Show', team_person %><%= link_to 'Edit', edit_team_person_path(team_person) %><%= link_to 'Destroy', team_person, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Team Person', new_team_person_path %> diff --git a/Team-Manager/app/views/team_people/index.json.jbuilder b/Team-Manager/app/views/team_people/index.json.jbuilder deleted file mode 100644 index 3d99fb9..0000000 --- a/Team-Manager/app/views/team_people/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @team_people, partial: 'team_people/team_person', as: :team_person \ No newline at end of file diff --git a/Team-Manager/app/views/team_people/new.html.erb b/Team-Manager/app/views/team_people/new.html.erb deleted file mode 100644 index cbd5817..0000000 --- a/Team-Manager/app/views/team_people/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Team Person

- -<%= render 'form', team_person: @team_person %> - -<%= link_to 'Back', team_people_path %> diff --git a/Team-Manager/app/views/team_people/show.html.erb b/Team-Manager/app/views/team_people/show.html.erb deleted file mode 100644 index 105b7d5..0000000 --- a/Team-Manager/app/views/team_people/show.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= notice %>

- -

- Person: - <%= @team_person.person_id %> -

- -

- Team: - <%= @team_person.team_id %> -

- -<%= link_to 'Edit', edit_team_person_path(@team_person) %> | -<%= link_to 'Back', team_people_path %> diff --git a/Team-Manager/app/views/team_people/show.json.jbuilder b/Team-Manager/app/views/team_people/show.json.jbuilder deleted file mode 100644 index 91a856f..0000000 --- a/Team-Manager/app/views/team_people/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "team_people/team_person", team_person: @team_person \ No newline at end of file diff --git a/Team-Manager/app/views/teams/_form.html.erb b/Team-Manager/app/views/teams/_form.html.erb deleted file mode 100644 index 14e8e1d..0000000 --- a/Team-Manager/app/views/teams/_form.html.erb +++ /dev/null @@ -1,42 +0,0 @@ -<%= form_for(team) do |f| %> - <% if team.errors.any? %> -
-

<%= pluralize(team.errors.count, "error") %> prohibited this team from being saved:

- - -
- <% end %> - -
- <%= f.label :team_id %> - <%= f.number_field :team_id %> -
- -
- <%= f.label :organization_id %> - <%= f.number_field :organization_id %> -
- -
- <%= f.label :team_name %> - <%= f.text_field :team_name %> -
- -
- <%= f.label :competitive %> - <%= f.check_box :competitive %> -
- -
- <%= f.label :age_group %> - <%= f.text_field :age_group %> -
- -
- <%= f.submit %> -
-<% end %> diff --git a/Team-Manager/app/views/teams/_team.json.jbuilder b/Team-Manager/app/views/teams/_team.json.jbuilder deleted file mode 100644 index 778e866..0000000 --- a/Team-Manager/app/views/teams/_team.json.jbuilder +++ /dev/null @@ -1,2 +0,0 @@ -json.extract! team, :id, :team_id, :organization_id, :team_name, :competitive, :age_group, :created_at, :updated_at -json.url team_url(team, format: :json) \ No newline at end of file diff --git a/Team-Manager/app/views/teams/edit.html.erb b/Team-Manager/app/views/teams/edit.html.erb deleted file mode 100644 index 3df4bd5..0000000 --- a/Team-Manager/app/views/teams/edit.html.erb +++ /dev/null @@ -1,6 +0,0 @@ -

Editing Team

- -<%= render 'form', team: @team %> - -<%= link_to 'Show', @team %> | -<%= link_to 'Back', teams_path %> diff --git a/Team-Manager/app/views/teams/index.html.erb b/Team-Manager/app/views/teams/index.html.erb deleted file mode 100644 index adcc656..0000000 --- a/Team-Manager/app/views/teams/index.html.erb +++ /dev/null @@ -1,35 +0,0 @@ -

<%= notice %>

- -

Teams

- - - - - - - - - - - - - - - <% @teams.each do |team| %> - - - - - - - - - - - <% end %> - -
TeamOrganizationTeam nameCompetitiveAge group
<%= team.team_id %><%= team.organization_id %><%= team.team_name %><%= team.competitive %><%= team.age_group %><%= link_to 'Show', team %><%= link_to 'Edit', edit_team_path(team) %><%= link_to 'Destroy', team, method: :delete, data: { confirm: 'Are you sure?' } %>
- -
- -<%= link_to 'New Team', new_team_path %> diff --git a/Team-Manager/app/views/teams/index.json.jbuilder b/Team-Manager/app/views/teams/index.json.jbuilder deleted file mode 100644 index 3a38e1b..0000000 --- a/Team-Manager/app/views/teams/index.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.array! @teams, partial: 'teams/team', as: :team \ No newline at end of file diff --git a/Team-Manager/app/views/teams/new.html.erb b/Team-Manager/app/views/teams/new.html.erb deleted file mode 100644 index 4c4f21b..0000000 --- a/Team-Manager/app/views/teams/new.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

New Team

- -<%= render 'form', team: @team %> - -<%= link_to 'Back', teams_path %> diff --git a/Team-Manager/app/views/teams/show.html.erb b/Team-Manager/app/views/teams/show.html.erb deleted file mode 100644 index b5b69dc..0000000 --- a/Team-Manager/app/views/teams/show.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

<%= notice %>

- -

- Team: - <%= @team.team_id %> -

- -

- Organization: - <%= @team.organization_id %> -

- -

- Team name: - <%= @team.team_name %> -

- -

- Competitive: - <%= @team.competitive %> -

- -

- Age group: - <%= @team.age_group %> -

- -<%= link_to 'Edit', edit_team_path(@team) %> | -<%= link_to 'Back', teams_path %> diff --git a/Team-Manager/app/views/teams/show.json.jbuilder b/Team-Manager/app/views/teams/show.json.jbuilder deleted file mode 100644 index 8a3edb3..0000000 --- a/Team-Manager/app/views/teams/show.json.jbuilder +++ /dev/null @@ -1 +0,0 @@ -json.partial! "teams/team", team: @team \ No newline at end of file diff --git a/Team-Manager/bin/bundle b/Team-Manager/bin/bundle deleted file mode 100755 index 66e9889..0000000 --- a/Team-Manager/bin/bundle +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env ruby -ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) -load Gem.bin_path('bundler', 'bundle') diff --git a/Team-Manager/bin/rails b/Team-Manager/bin/rails deleted file mode 100755 index 5badb2f..0000000 --- a/Team-Manager/bin/rails +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env ruby -begin - load File.expand_path('../spring', __FILE__) -rescue LoadError => e - raise unless e.message.include?('spring') -end -APP_PATH = File.expand_path('../config/application', __dir__) -require_relative '../config/boot' -require 'rails/commands' diff --git a/Team-Manager/bin/rake b/Team-Manager/bin/rake deleted file mode 100755 index d87d5f5..0000000 --- a/Team-Manager/bin/rake +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env ruby -begin - load File.expand_path('../spring', __FILE__) -rescue LoadError => e - raise unless e.message.include?('spring') -end -require_relative '../config/boot' -require 'rake' -Rake.application.run diff --git a/Team-Manager/bin/setup b/Team-Manager/bin/setup deleted file mode 100755 index e620b4d..0000000 --- a/Team-Manager/bin/setup +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env ruby -require 'pathname' -require 'fileutils' -include FileUtils - -# path to your application root. -APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) - -def system!(*args) - system(*args) || abort("\n== Command #{args} failed ==") -end - -chdir APP_ROOT do - # This script is a starting point to setup your application. - # Add necessary setup steps to this file. - - puts '== Installing dependencies ==' - system! 'gem install bundler --conservative' - system('bundle check') || system!('bundle install') - - # puts "\n== Copying sample files ==" - # unless File.exist?('config/database.yml') - # cp 'config/database.yml.sample', 'config/database.yml' - # end - - puts "\n== Preparing database ==" - system! 'bin/rails db:setup' - - puts "\n== Removing old logs and tempfiles ==" - system! 'bin/rails log:clear tmp:clear' - - puts "\n== Restarting application server ==" - system! 'bin/rails restart' -end diff --git a/Team-Manager/bin/spring b/Team-Manager/bin/spring deleted file mode 100755 index 7fe232c..0000000 --- a/Team-Manager/bin/spring +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env ruby - -# This file loads spring without using Bundler, in order to be fast. -# It gets overwritten when you run the `spring binstub` command. - -unless defined?(Spring) - require 'rubygems' - require 'bundler' - - if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)) - Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) } - gem 'spring', match[1] - require 'spring/binstub' - end -end diff --git a/Team-Manager/bin/update b/Team-Manager/bin/update deleted file mode 100755 index a8e4462..0000000 --- a/Team-Manager/bin/update +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env ruby -require 'pathname' -require 'fileutils' -include FileUtils - -# path to your application root. -APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) - -def system!(*args) - system(*args) || abort("\n== Command #{args} failed ==") -end - -chdir APP_ROOT do - # This script is a way to update your development environment automatically. - # Add necessary update steps to this file. - - puts '== Installing dependencies ==' - system! 'gem install bundler --conservative' - system('bundle check') || system!('bundle install') - - puts "\n== Updating database ==" - system! 'bin/rails db:migrate' - - puts "\n== Removing old logs and tempfiles ==" - system! 'bin/rails log:clear tmp:clear' - - puts "\n== Restarting application server ==" - system! 'bin/rails restart' -end diff --git a/Team-Manager/config.ru b/Team-Manager/config.ru deleted file mode 100644 index f7ba0b5..0000000 --- a/Team-Manager/config.ru +++ /dev/null @@ -1,5 +0,0 @@ -# This file is used by Rack-based servers to start the application. - -require_relative 'config/environment' - -run Rails.application diff --git a/Team-Manager/config/application.rb b/Team-Manager/config/application.rb deleted file mode 100644 index ab236a2..0000000 --- a/Team-Manager/config/application.rb +++ /dev/null @@ -1,15 +0,0 @@ -require_relative 'boot' - -require 'rails/all' - -# Require the gems listed in Gemfile, including any gems -# you've limited to :test, :development, or :production. -Bundler.require(*Rails.groups) - -module TeamManager - class Application < Rails::Application - # Settings in config/environments/* take precedence over those specified here. - # Application configuration should go into files in config/initializers - # -- all .rb files in that directory are automatically loaded. - end -end diff --git a/Team-Manager/config/boot.rb b/Team-Manager/config/boot.rb deleted file mode 100644 index 30f5120..0000000 --- a/Team-Manager/config/boot.rb +++ /dev/null @@ -1,3 +0,0 @@ -ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) - -require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/Team-Manager/config/cable.yml b/Team-Manager/config/cable.yml deleted file mode 100644 index 0bbde6f..0000000 --- a/Team-Manager/config/cable.yml +++ /dev/null @@ -1,9 +0,0 @@ -development: - adapter: async - -test: - adapter: async - -production: - adapter: redis - url: redis://localhost:6379/1 diff --git a/Team-Manager/config/database.yml b/Team-Manager/config/database.yml deleted file mode 100644 index 1c1a37c..0000000 --- a/Team-Manager/config/database.yml +++ /dev/null @@ -1,25 +0,0 @@ -# SQLite version 3.x -# gem install sqlite3 -# -# Ensure the SQLite 3 gem is defined in your Gemfile -# gem 'sqlite3' -# -default: &default - adapter: sqlite3 - pool: 5 - timeout: 5000 - -development: - <<: *default - database: db/development.sqlite3 - -# Warning: The database defined as "test" will be erased and -# re-generated from your development database when you run "rake". -# Do not set this db to the same as development or production. -test: - <<: *default - database: db/test.sqlite3 - -production: - <<: *default - database: db/production.sqlite3 diff --git a/Team-Manager/config/environment.rb b/Team-Manager/config/environment.rb deleted file mode 100644 index 426333b..0000000 --- a/Team-Manager/config/environment.rb +++ /dev/null @@ -1,5 +0,0 @@ -# Load the Rails application. -require_relative 'application' - -# Initialize the Rails application. -Rails.application.initialize! diff --git a/Team-Manager/config/environments/development.rb b/Team-Manager/config/environments/development.rb deleted file mode 100644 index 6f71970..0000000 --- a/Team-Manager/config/environments/development.rb +++ /dev/null @@ -1,54 +0,0 @@ -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb. - - # In the development environment your application's code is reloaded on - # every request. This slows down response time but is perfect for development - # since you don't have to restart the web server when you make code changes. - config.cache_classes = false - - # Do not eager load code on boot. - config.eager_load = false - - # Show full error reports. - config.consider_all_requests_local = true - - # Enable/disable caching. By default caching is disabled. - if Rails.root.join('tmp/caching-dev.txt').exist? - config.action_controller.perform_caching = true - - config.cache_store = :memory_store - config.public_file_server.headers = { - 'Cache-Control' => 'public, max-age=172800' - } - else - config.action_controller.perform_caching = false - - config.cache_store = :null_store - end - - # Don't care if the mailer can't send. - config.action_mailer.raise_delivery_errors = false - - config.action_mailer.perform_caching = false - - # Print deprecation notices to the Rails logger. - config.active_support.deprecation = :log - - # Raise an error on page load if there are pending migrations. - config.active_record.migration_error = :page_load - - # Debug mode disables concatenation and preprocessing of assets. - # This option may cause significant delays in view rendering with a large - # number of complex assets. - config.assets.debug = true - - # Suppress logger output for asset requests. - config.assets.quiet = true - - # Raises error for missing translations - # config.action_view.raise_on_missing_translations = true - - # Use an evented file watcher to asynchronously detect changes in source code, - # routes, locales, etc. This feature depends on the listen gem. - config.file_watcher = ActiveSupport::EventedFileUpdateChecker -end diff --git a/Team-Manager/config/environments/production.rb b/Team-Manager/config/environments/production.rb deleted file mode 100644 index 095a656..0000000 --- a/Team-Manager/config/environments/production.rb +++ /dev/null @@ -1,86 +0,0 @@ -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb. - - # Code is not reloaded between requests. - config.cache_classes = true - - # Eager load code on boot. This eager loads most of Rails and - # your application in memory, allowing both threaded web servers - # and those relying on copy on write to perform better. - # Rake tasks automatically ignore this option for performance. - config.eager_load = true - - # Full error reports are disabled and caching is turned on. - config.consider_all_requests_local = false - config.action_controller.perform_caching = true - - # Disable serving static files from the `/public` folder by default since - # Apache or NGINX already handles this. - config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? - - # Compress JavaScripts and CSS. - config.assets.js_compressor = :uglifier - # config.assets.css_compressor = :sass - - # Do not fallback to assets pipeline if a precompiled asset is missed. - config.assets.compile = false - - # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb - - # Enable serving of images, stylesheets, and JavaScripts from an asset server. - # config.action_controller.asset_host = 'http://assets.example.com' - - # Specifies the header that your server uses for sending files. - # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache - # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX - - # Mount Action Cable outside main process or domain - # config.action_cable.mount_path = nil - # config.action_cable.url = 'wss://example.com/cable' - # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] - - # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. - # config.force_ssl = true - - # Use the lowest log level to ensure availability of diagnostic information - # when problems arise. - config.log_level = :debug - - # Prepend all log lines with the following tags. - config.log_tags = [ :request_id ] - - # Use a different cache store in production. - # config.cache_store = :mem_cache_store - - # Use a real queuing backend for Active Job (and separate queues per environment) - # config.active_job.queue_adapter = :resque - # config.active_job.queue_name_prefix = "Team-Manager_#{Rails.env}" - config.action_mailer.perform_caching = false - - # Ignore bad email addresses and do not raise email delivery errors. - # Set this to true and configure the email server for immediate delivery to raise delivery errors. - # config.action_mailer.raise_delivery_errors = false - - # Enable locale fallbacks for I18n (makes lookups for any locale fall back to - # the I18n.default_locale when a translation cannot be found). - config.i18n.fallbacks = true - - # Send deprecation notices to registered listeners. - config.active_support.deprecation = :notify - - # Use default logging formatter so that PID and timestamp are not suppressed. - config.log_formatter = ::Logger::Formatter.new - - # Use a different logger for distributed setups. - # require 'syslog/logger' - # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') - - if ENV["RAILS_LOG_TO_STDOUT"].present? - logger = ActiveSupport::Logger.new(STDOUT) - logger.formatter = config.log_formatter - config.logger = ActiveSupport::TaggedLogging.new(logger) - end - - # Do not dump schema after migrations. - config.active_record.dump_schema_after_migration = false -end diff --git a/Team-Manager/config/environments/test.rb b/Team-Manager/config/environments/test.rb deleted file mode 100644 index 30587ef..0000000 --- a/Team-Manager/config/environments/test.rb +++ /dev/null @@ -1,42 +0,0 @@ -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb. - - # The test environment is used exclusively to run your application's - # test suite. You never need to work with it otherwise. Remember that - # your test database is "scratch space" for the test suite and is wiped - # and recreated between test runs. Don't rely on the data there! - config.cache_classes = true - - # Do not eager load code on boot. This avoids loading your whole application - # just for the purpose of running a single test. If you are using a tool that - # preloads Rails for running tests, you may have to set it to true. - config.eager_load = false - - # Configure public file server for tests with Cache-Control for performance. - config.public_file_server.enabled = true - config.public_file_server.headers = { - 'Cache-Control' => 'public, max-age=3600' - } - - # Show full error reports and disable caching. - config.consider_all_requests_local = true - config.action_controller.perform_caching = false - - # Raise exceptions instead of rendering exception templates. - config.action_dispatch.show_exceptions = false - - # Disable request forgery protection in test environment. - config.action_controller.allow_forgery_protection = false - config.action_mailer.perform_caching = false - - # Tell Action Mailer not to deliver emails to the real world. - # The :test delivery method accumulates sent emails in the - # ActionMailer::Base.deliveries array. - config.action_mailer.delivery_method = :test - - # Print deprecation notices to the stderr. - config.active_support.deprecation = :stderr - - # Raises error for missing translations - # config.action_view.raise_on_missing_translations = true -end diff --git a/Team-Manager/config/initializers/application_controller_renderer.rb b/Team-Manager/config/initializers/application_controller_renderer.rb deleted file mode 100644 index 51639b6..0000000 --- a/Team-Manager/config/initializers/application_controller_renderer.rb +++ /dev/null @@ -1,6 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# ApplicationController.renderer.defaults.merge!( -# http_host: 'example.org', -# https: false -# ) diff --git a/Team-Manager/config/initializers/assets.rb b/Team-Manager/config/initializers/assets.rb deleted file mode 100644 index 01ef3e6..0000000 --- a/Team-Manager/config/initializers/assets.rb +++ /dev/null @@ -1,11 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Version of your assets, change this if you want to expire all your assets. -Rails.application.config.assets.version = '1.0' - -# Add additional assets to the asset load path -# Rails.application.config.assets.paths << Emoji.images_path - -# Precompile additional assets. -# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. -# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/Team-Manager/config/initializers/backtrace_silencers.rb b/Team-Manager/config/initializers/backtrace_silencers.rb deleted file mode 100644 index 59385cd..0000000 --- a/Team-Manager/config/initializers/backtrace_silencers.rb +++ /dev/null @@ -1,7 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. -# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } - -# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. -# Rails.backtrace_cleaner.remove_silencers! diff --git a/Team-Manager/config/initializers/cookies_serializer.rb b/Team-Manager/config/initializers/cookies_serializer.rb deleted file mode 100644 index 5a6a32d..0000000 --- a/Team-Manager/config/initializers/cookies_serializer.rb +++ /dev/null @@ -1,5 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Specify a serializer for the signed and encrypted cookie jars. -# Valid options are :json, :marshal, and :hybrid. -Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/Team-Manager/config/initializers/filter_parameter_logging.rb b/Team-Manager/config/initializers/filter_parameter_logging.rb deleted file mode 100644 index 4a994e1..0000000 --- a/Team-Manager/config/initializers/filter_parameter_logging.rb +++ /dev/null @@ -1,4 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Configure sensitive parameters which will be filtered from the log file. -Rails.application.config.filter_parameters += [:password] diff --git a/Team-Manager/config/initializers/inflections.rb b/Team-Manager/config/initializers/inflections.rb deleted file mode 100644 index ac033bf..0000000 --- a/Team-Manager/config/initializers/inflections.rb +++ /dev/null @@ -1,16 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Add new inflection rules using the following format. Inflections -# are locale specific, and you may define rules for as many different -# locales as you wish. All of these examples are active by default: -# ActiveSupport::Inflector.inflections(:en) do |inflect| -# inflect.plural /^(ox)$/i, '\1en' -# inflect.singular /^(ox)en/i, '\1' -# inflect.irregular 'person', 'people' -# inflect.uncountable %w( fish sheep ) -# end - -# These inflection rules are supported but not enabled by default: -# ActiveSupport::Inflector.inflections(:en) do |inflect| -# inflect.acronym 'RESTful' -# end diff --git a/Team-Manager/config/initializers/mime_types.rb b/Team-Manager/config/initializers/mime_types.rb deleted file mode 100644 index dc18996..0000000 --- a/Team-Manager/config/initializers/mime_types.rb +++ /dev/null @@ -1,4 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Add new mime types for use in respond_to blocks: -# Mime::Type.register "text/richtext", :rtf diff --git a/Team-Manager/config/initializers/new_framework_defaults.rb b/Team-Manager/config/initializers/new_framework_defaults.rb deleted file mode 100644 index 0706caf..0000000 --- a/Team-Manager/config/initializers/new_framework_defaults.rb +++ /dev/null @@ -1,24 +0,0 @@ -# Be sure to restart your server when you modify this file. -# -# This file contains migration options to ease your Rails 5.0 upgrade. -# -# Read the Rails 5.0 release notes for more info on each option. - -# Enable per-form CSRF tokens. Previous versions had false. -Rails.application.config.action_controller.per_form_csrf_tokens = true - -# Enable origin-checking CSRF mitigation. Previous versions had false. -Rails.application.config.action_controller.forgery_protection_origin_check = true - -# Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`. -# Previous versions had false. -ActiveSupport.to_time_preserves_timezone = true - -# Require `belongs_to` associations by default. Previous versions had false. -Rails.application.config.active_record.belongs_to_required_by_default = true - -# Do not halt callback chains when a callback returns false. Previous versions had true. -ActiveSupport.halt_callback_chains_on_return_false = false - -# Configure SSL options to enable HSTS with subdomains. Previous versions had false. -Rails.application.config.ssl_options = { hsts: { subdomains: true } } diff --git a/Team-Manager/config/initializers/session_store.rb b/Team-Manager/config/initializers/session_store.rb deleted file mode 100644 index 3453602..0000000 --- a/Team-Manager/config/initializers/session_store.rb +++ /dev/null @@ -1,3 +0,0 @@ -# Be sure to restart your server when you modify this file. - -Rails.application.config.session_store :cookie_store, key: '_Team-Manager_session' diff --git a/Team-Manager/config/initializers/wrap_parameters.rb b/Team-Manager/config/initializers/wrap_parameters.rb deleted file mode 100644 index bbfc396..0000000 --- a/Team-Manager/config/initializers/wrap_parameters.rb +++ /dev/null @@ -1,14 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# This file contains settings for ActionController::ParamsWrapper which -# is enabled by default. - -# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. -ActiveSupport.on_load(:action_controller) do - wrap_parameters format: [:json] -end - -# To enable root element in JSON for ActiveRecord objects. -# ActiveSupport.on_load(:active_record) do -# self.include_root_in_json = true -# end diff --git a/Team-Manager/config/locales/en.yml b/Team-Manager/config/locales/en.yml deleted file mode 100644 index 0653957..0000000 --- a/Team-Manager/config/locales/en.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Files in the config/locales directory are used for internationalization -# and are automatically loaded by Rails. If you want to use locales other -# than English, add the necessary files in this directory. -# -# To use the locales, use `I18n.t`: -# -# I18n.t 'hello' -# -# In views, this is aliased to just `t`: -# -# <%= t('hello') %> -# -# To use a different locale, set it with `I18n.locale`: -# -# I18n.locale = :es -# -# This would use the information in config/locales/es.yml. -# -# To learn more, please read the Rails Internationalization guide -# available at http://guides.rubyonrails.org/i18n.html. - -en: - hello: "Hello world" diff --git a/Team-Manager/config/puma.rb b/Team-Manager/config/puma.rb deleted file mode 100644 index c7f311f..0000000 --- a/Team-Manager/config/puma.rb +++ /dev/null @@ -1,47 +0,0 @@ -# Puma can serve each request in a thread from an internal thread pool. -# The `threads` method setting takes two numbers a minimum and maximum. -# Any libraries that use thread pools should be configured to match -# the maximum value specified for Puma. Default is set to 5 threads for minimum -# and maximum, this matches the default thread size of Active Record. -# -threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i -threads threads_count, threads_count - -# Specifies the `port` that Puma will listen on to receive requests, default is 3000. -# -port ENV.fetch("PORT") { 3000 } - -# Specifies the `environment` that Puma will run in. -# -environment ENV.fetch("RAILS_ENV") { "development" } - -# Specifies the number of `workers` to boot in clustered mode. -# Workers are forked webserver processes. If using threads and workers together -# the concurrency of the application would be max `threads` * `workers`. -# Workers do not work on JRuby or Windows (both of which do not support -# processes). -# -# workers ENV.fetch("WEB_CONCURRENCY") { 2 } - -# Use the `preload_app!` method when specifying a `workers` number. -# This directive tells Puma to first boot the application and load code -# before forking the application. This takes advantage of Copy On Write -# process behavior so workers use less memory. If you use this option -# you need to make sure to reconnect any threads in the `on_worker_boot` -# block. -# -# preload_app! - -# The code in the `on_worker_boot` will be called if you are using -# clustered mode by specifying a number of `workers`. After each worker -# process is booted this block will be run, if you are using `preload_app!` -# option you will want to use this block to reconnect to any threads -# or connections that may have been created at application boot, Ruby -# cannot share connections between processes. -# -# on_worker_boot do -# ActiveRecord::Base.establish_connection if defined?(ActiveRecord) -# end - -# Allow puma to be restarted by `rails restart` command. -plugin :tmp_restart diff --git a/Team-Manager/config/routes.rb b/Team-Manager/config/routes.rb deleted file mode 100644 index e236de6..0000000 --- a/Team-Manager/config/routes.rb +++ /dev/null @@ -1,18 +0,0 @@ -Rails.application.routes.draw do - resources :phone_numbers - resources :emails - resources :people - resources :certifications - resources :parent_children - resources :event_property_maps - resources :event_types - resources :events - resources :organizations - resources :organization_teams - resources :teams - resources :player_statistics - resources :coaches - resources :players - resources :team_people - # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html -end diff --git a/Team-Manager/config/secrets.yml b/Team-Manager/config/secrets.yml deleted file mode 100644 index 50515fc..0000000 --- a/Team-Manager/config/secrets.yml +++ /dev/null @@ -1,22 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Your secret key is used for verifying the integrity of signed cookies. -# If you change this key, all old signed cookies will become invalid! - -# Make sure the secret is at least 30 characters and all random, -# no regular words or you'll be exposed to dictionary attacks. -# You can use `rails secret` to generate a secure secret key. - -# Make sure the secrets in this file are kept private -# if you're sharing your code publicly. - -development: - secret_key_base: c2d973a312a70becaeb33fae9698efdbb2472a55ae7e5530898f775963cd38fdee762ad171e80c983ab000e4f4e8d1ca3b16783b29f411c2ae08d58584a7b43b - -test: - secret_key_base: 88e13135f1589688d428975f49c2c4a2f788cbcdbdd698ba19e684023a90e5f8f7fff5e5fe41c9456d46d2e528c45176685df2ae9a266c67b230a6a61fe2d672 - -# Do not keep production secrets in the repository, -# instead read values from the environment. -production: - secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/Team-Manager/config/spring.rb b/Team-Manager/config/spring.rb deleted file mode 100644 index c9119b4..0000000 --- a/Team-Manager/config/spring.rb +++ /dev/null @@ -1,6 +0,0 @@ -%w( - .ruby-version - .rbenv-vars - tmp/restart.txt - tmp/caching-dev.txt -).each { |path| Spring.watch(path) } diff --git a/Team-Manager/db/migrate/20160926050909_create_people.rb b/Team-Manager/db/migrate/20160926050909_create_people.rb deleted file mode 100644 index 8ab8f84..0000000 --- a/Team-Manager/db/migrate/20160926050909_create_people.rb +++ /dev/null @@ -1,22 +0,0 @@ -class CreatePeople < ActiveRecord::Migration[5.0] - def change - create_table :people do |t| - t.string :first_name - t.string :last_name - t.string :addr_route - t.string :addr_city - t.string :addr_state - t.integer :addr_zip - t.string :username - t.string :pass_hash - t.string :pass_salt - t.text :bio - t.date :birth_date - t.string :gender - t.integer :height_in_inches - t.integer :weight_in_pounds - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160926051852_create_phone_numbers.rb b/Team-Manager/db/migrate/20160926051852_create_phone_numbers.rb deleted file mode 100644 index d34b52a..0000000 --- a/Team-Manager/db/migrate/20160926051852_create_phone_numbers.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreatePhoneNumbers < ActiveRecord::Migration[5.0] - def change - create_table :phone_numbers do |t| - t.string :phone - t.references :person_id, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160926051936_create_emails.rb b/Team-Manager/db/migrate/20160926051936_create_emails.rb deleted file mode 100644 index da76119..0000000 --- a/Team-Manager/db/migrate/20160926051936_create_emails.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateEmails < ActiveRecord::Migration[5.0] - def change - create_table :emails do |t| - t.string :email - t.references :person_id, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160926053714_create_phone_numbers.rb b/Team-Manager/db/migrate/20160926053714_create_phone_numbers.rb deleted file mode 100644 index d34b52a..0000000 --- a/Team-Manager/db/migrate/20160926053714_create_phone_numbers.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreatePhoneNumbers < ActiveRecord::Migration[5.0] - def change - create_table :phone_numbers do |t| - t.string :phone - t.references :person_id, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160926053723_create_emails.rb b/Team-Manager/db/migrate/20160926053723_create_emails.rb deleted file mode 100644 index da76119..0000000 --- a/Team-Manager/db/migrate/20160926053723_create_emails.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateEmails < ActiveRecord::Migration[5.0] - def change - create_table :emails do |t| - t.string :email - t.references :person_id, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160926053732_create_team_people.rb b/Team-Manager/db/migrate/20160926053732_create_team_people.rb deleted file mode 100644 index 135d2b7..0000000 --- a/Team-Manager/db/migrate/20160926053732_create_team_people.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateTeamPeople < ActiveRecord::Migration[5.0] - def change - create_table :team_people do |t| - t.references :person_id, foreign_key: true - t.references :team_id, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160926053806_create_people.rb b/Team-Manager/db/migrate/20160926053806_create_people.rb deleted file mode 100644 index b78c435..0000000 --- a/Team-Manager/db/migrate/20160926053806_create_people.rb +++ /dev/null @@ -1,23 +0,0 @@ -class CreatePeople < ActiveRecord::Migration[5.0] - def change - create_table :people do |t| - t.string :first_name - t.string :last_name - t.string :addr_route - t.string :addr_city - t.string :addr_state - t.integer :addr_zip - t.string :username - t.string :pass_hash - t.string :pass_salt - t.text :bio - t.date :birth_date - t.string :gender - t.integer :height_in_inches - t.integer :weight_in_pounds - t.string :shoe_size - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160926053858_create_players.rb b/Team-Manager/db/migrate/20160926053858_create_players.rb deleted file mode 100644 index 1b3ac1b..0000000 --- a/Team-Manager/db/migrate/20160926053858_create_players.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreatePlayers < ActiveRecord::Migration[5.0] - def change - create_table :players do |t| - t.references :player_coach_id, foreign_key: true - t.integer :player_jersey_id - t.date :team_join_date - t.date :team_left_date - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927021433_create_coaches.rb b/Team-Manager/db/migrate/20160927021433_create_coaches.rb deleted file mode 100644 index 40718e4..0000000 --- a/Team-Manager/db/migrate/20160927021433_create_coaches.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateCoaches < ActiveRecord::Migration[5.0] - def change - create_table :coaches do |t| - t.references :person_id, foreign_key: true - t.string :coach_type - t.date :coach_year_began - t.date :coach_year_ended - t.integer :coach_id - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927021915_create_player_statistics.rb b/Team-Manager/db/migrate/20160927021915_create_player_statistics.rb deleted file mode 100644 index 0a7c056..0000000 --- a/Team-Manager/db/migrate/20160927021915_create_player_statistics.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreatePlayerStatistics < ActiveRecord::Migration[5.0] - def change - create_table :player_statistics do |t| - t.references :player_id, foreign_key: true - t.string :statistic_type - t.string :statistic_value - t.date :date_recorded - t.integer :stat_id - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927022930_create_teams.rb b/Team-Manager/db/migrate/20160927022930_create_teams.rb deleted file mode 100644 index 8dafe59..0000000 --- a/Team-Manager/db/migrate/20160927022930_create_teams.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateTeams < ActiveRecord::Migration[5.0] - def change - create_table :teams do |t| - t.integer :team_id - t.integer :organization_id - t.string :team_name - t.boolean :competitive - t.string :age_group - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927023204_create_people.rb b/Team-Manager/db/migrate/20160927023204_create_people.rb deleted file mode 100644 index d2dd4f5..0000000 --- a/Team-Manager/db/migrate/20160927023204_create_people.rb +++ /dev/null @@ -1,24 +0,0 @@ -class CreatePeople < ActiveRecord::Migration[5.0] - def change - create_table :people do |t| - t.integer :person_id - t.string :first_name - t.string :last_name - t.string :addr_route - t.string :addr_city - t.string :addr_state - t.integer :addr_zip - t.string :username - t.string :pass_hash - t.string :pass_salt - t.text :bio - t.date :birth_date - t.string :gender - t.integer :height_in_inches - t.integer :weight_in_pounds - t.string :shoe_size - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927023500_create_organization_teams.rb b/Team-Manager/db/migrate/20160927023500_create_organization_teams.rb deleted file mode 100644 index c71a310..0000000 --- a/Team-Manager/db/migrate/20160927023500_create_organization_teams.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateOrganizationTeams < ActiveRecord::Migration[5.0] - def change - create_table :organization_teams do |t| - t.references :organization_id, foreign_key: true - t.references :team_id, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927023816_create_organizations.rb b/Team-Manager/db/migrate/20160927023816_create_organizations.rb deleted file mode 100644 index b3136b3..0000000 --- a/Team-Manager/db/migrate/20160927023816_create_organizations.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateOrganizations < ActiveRecord::Migration[5.0] - def change - create_table :organizations do |t| - t.integer :organization_id - t.string :name - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927024414_create_events.rb b/Team-Manager/db/migrate/20160927024414_create_events.rb deleted file mode 100644 index 937b4fb..0000000 --- a/Team-Manager/db/migrate/20160927024414_create_events.rb +++ /dev/null @@ -1,14 +0,0 @@ -class CreateEvents < ActiveRecord::Migration[5.0] - def change - create_table :events do |t| - t.integer :event_id - t.references :event_type, foreign_key: true - t.date :event_datetime - t.references :team_id, foreign_key: true - t.integer :created_by - t.boolean :open_to_public - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927024645_create_event_types.rb b/Team-Manager/db/migrate/20160927024645_create_event_types.rb deleted file mode 100644 index 7700b59..0000000 --- a/Team-Manager/db/migrate/20160927024645_create_event_types.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateEventTypes < ActiveRecord::Migration[5.0] - def change - create_table :event_types do |t| - t.integer :event_type_id - t.string :type_description - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927024802_create_event_property_maps.rb b/Team-Manager/db/migrate/20160927024802_create_event_property_maps.rb deleted file mode 100644 index aea45d4..0000000 --- a/Team-Manager/db/migrate/20160927024802_create_event_property_maps.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreateEventPropertyMaps < ActiveRecord::Migration[5.0] - def change - create_table :event_property_maps do |t| - t.references :event_id, foreign_key: true - t.string :key - t.string :value - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927025028_create_parent_children.rb b/Team-Manager/db/migrate/20160927025028_create_parent_children.rb deleted file mode 100644 index a037931..0000000 --- a/Team-Manager/db/migrate/20160927025028_create_parent_children.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateParentChildren < ActiveRecord::Migration[5.0] - def change - create_table :parent_children do |t| - t.references :parent_id, foreign_key: true - t.references :child_id, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927025116_create_certifications.rb b/Team-Manager/db/migrate/20160927025116_create_certifications.rb deleted file mode 100644 index 7412367..0000000 --- a/Team-Manager/db/migrate/20160927025116_create_certifications.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateCertifications < ActiveRecord::Migration[5.0] - def change - create_table :certifications do |t| - t.references :person_id, foreign_key: true - t.string :certification_name - t.date :expiration_date - t.body :note - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927030105_create_certifications.rb b/Team-Manager/db/migrate/20160927030105_create_certifications.rb deleted file mode 100644 index 628cc12..0000000 --- a/Team-Manager/db/migrate/20160927030105_create_certifications.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateCertifications < ActiveRecord::Migration[5.0] - def change - create_table :certifications do |t| - t.references :person_id, foreign_key: true - t.string :certification_name - t.date :expiration_date - t.text :note - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927032106_create_people.rb b/Team-Manager/db/migrate/20160927032106_create_people.rb deleted file mode 100644 index b78c435..0000000 --- a/Team-Manager/db/migrate/20160927032106_create_people.rb +++ /dev/null @@ -1,23 +0,0 @@ -class CreatePeople < ActiveRecord::Migration[5.0] - def change - create_table :people do |t| - t.string :first_name - t.string :last_name - t.string :addr_route - t.string :addr_city - t.string :addr_state - t.integer :addr_zip - t.string :username - t.string :pass_hash - t.string :pass_salt - t.text :bio - t.date :birth_date - t.string :gender - t.integer :height_in_inches - t.integer :weight_in_pounds - t.string :shoe_size - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927034853_create_emails.rb b/Team-Manager/db/migrate/20160927034853_create_emails.rb deleted file mode 100644 index d5f5d04..0000000 --- a/Team-Manager/db/migrate/20160927034853_create_emails.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateEmails < ActiveRecord::Migration[5.0] - def change - create_table :emails do |t| - t.string :email - t.references :person, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/migrate/20160927035528_create_phone_numbers.rb b/Team-Manager/db/migrate/20160927035528_create_phone_numbers.rb deleted file mode 100644 index 93dc0fa..0000000 --- a/Team-Manager/db/migrate/20160927035528_create_phone_numbers.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreatePhoneNumbers < ActiveRecord::Migration[5.0] - def change - create_table :phone_numbers do |t| - t.string :phone - t.references :person, foreign_key: true - - t.timestamps - end - end -end diff --git a/Team-Manager/db/schema.rb b/Team-Manager/db/schema.rb deleted file mode 100644 index a8a1057..0000000 --- a/Team-Manager/db/schema.rb +++ /dev/null @@ -1,166 +0,0 @@ -# This file is auto-generated from the current state of the database. Instead -# of editing this file, please use the migrations feature of Active Record to -# incrementally modify your database, and then regenerate this schema definition. -# -# Note that this schema.rb definition is the authoritative source for your -# database schema. If you need to create the application database on another -# system, you should be using db:schema:load, not running all the migrations -# from scratch. The latter is a flawed and unsustainable approach (the more migrations -# you'll amass, the slower it'll run and the greater likelihood for issues). -# -# It's strongly recommended that you check this file into your version control system. - -ActiveRecord::Schema.define(version: 20160927035528) do - - create_table "certifications", force: :cascade do |t| - t.integer "person_id_id" - t.string "certification_name" - t.date "expiration_date" - t.text "note" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["person_id_id"], name: "index_certifications_on_person_id_id" - end - - create_table "coaches", force: :cascade do |t| - t.integer "person_id_id" - t.string "coach_type" - t.date "coach_year_began" - t.date "coach_year_ended" - t.integer "coach_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["person_id_id"], name: "index_coaches_on_person_id_id" - end - - create_table "emails", force: :cascade do |t| - t.string "email" - t.integer "person_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["person_id"], name: "index_emails_on_person_id" - end - - create_table "event_property_maps", force: :cascade do |t| - t.integer "event_id_id" - t.string "key" - t.string "value" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["event_id_id"], name: "index_event_property_maps_on_event_id_id" - end - - create_table "event_types", force: :cascade do |t| - t.integer "event_type_id" - t.string "type_description" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - - create_table "events", force: :cascade do |t| - t.integer "event_id" - t.integer "event_type_id" - t.date "event_datetime" - t.integer "team_id_id" - t.integer "created_by" - t.boolean "open_to_public" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["event_type_id"], name: "index_events_on_event_type_id" - t.index ["team_id_id"], name: "index_events_on_team_id_id" - end - - create_table "organization_teams", force: :cascade do |t| - t.integer "organization_id_id" - t.integer "team_id_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["organization_id_id"], name: "index_organization_teams_on_organization_id_id" - t.index ["team_id_id"], name: "index_organization_teams_on_team_id_id" - end - - create_table "organizations", force: :cascade do |t| - t.integer "organization_id" - t.string "name" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - - create_table "parent_children", force: :cascade do |t| - t.integer "parent_id_id" - t.integer "child_id_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["child_id_id"], name: "index_parent_children_on_child_id_id" - t.index ["parent_id_id"], name: "index_parent_children_on_parent_id_id" - end - - create_table "people", force: :cascade do |t| - t.string "first_name" - t.string "last_name" - t.string "addr_route" - t.string "addr_city" - t.string "addr_state" - t.integer "addr_zip" - t.string "username" - t.string "pass_hash" - t.string "pass_salt" - t.text "bio" - t.date "birth_date" - t.string "gender" - t.integer "height_in_inches" - t.integer "weight_in_pounds" - t.string "shoe_size" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - - create_table "phone_numbers", force: :cascade do |t| - t.string "phone" - t.integer "person_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["person_id"], name: "index_phone_numbers_on_person_id" - end - - create_table "player_statistics", force: :cascade do |t| - t.integer "player_id_id" - t.string "statistic_type" - t.string "statistic_value" - t.date "date_recorded" - t.integer "stat_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["player_id_id"], name: "index_player_statistics_on_player_id_id" - end - - create_table "players", force: :cascade do |t| - t.integer "player_coach_id_id" - t.integer "player_jersey_id" - t.date "team_join_date" - t.date "team_left_date" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["player_coach_id_id"], name: "index_players_on_player_coach_id_id" - end - - create_table "team_people", force: :cascade do |t| - t.integer "person_id_id" - t.integer "team_id_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["person_id_id"], name: "index_team_people_on_person_id_id" - t.index ["team_id_id"], name: "index_team_people_on_team_id_id" - end - - create_table "teams", force: :cascade do |t| - t.integer "team_id" - t.integer "organization_id" - t.string "team_name" - t.boolean "competitive" - t.string "age_group" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - -end diff --git a/Team-Manager/db/seeds.rb b/Team-Manager/db/seeds.rb deleted file mode 100644 index 1beea2a..0000000 --- a/Team-Manager/db/seeds.rb +++ /dev/null @@ -1,7 +0,0 @@ -# This file should contain all the record creation needed to seed the database with its default values. -# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). -# -# Examples: -# -# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) -# Character.create(name: 'Luke', movie: movies.first) diff --git a/Team-Manager/lib/assets/.keep b/Team-Manager/lib/assets/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/lib/tasks/.keep b/Team-Manager/lib/tasks/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/log/.keep b/Team-Manager/log/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/public/404.html b/Team-Manager/public/404.html deleted file mode 100644 index b612547..0000000 --- a/Team-Manager/public/404.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - The page you were looking for doesn't exist (404) - - - - - - -
-
-

The page you were looking for doesn't exist.

-

You may have mistyped the address or the page may have moved.

-
-

If you are the application owner check the logs for more information.

-
- - diff --git a/Team-Manager/public/422.html b/Team-Manager/public/422.html deleted file mode 100644 index a21f82b..0000000 --- a/Team-Manager/public/422.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - The change you wanted was rejected (422) - - - - - - -
-
-

The change you wanted was rejected.

-

Maybe you tried to change something you didn't have access to.

-
-

If you are the application owner check the logs for more information.

-
- - diff --git a/Team-Manager/public/500.html b/Team-Manager/public/500.html deleted file mode 100644 index 061abc5..0000000 --- a/Team-Manager/public/500.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - We're sorry, but something went wrong (500) - - - - - - -
-
-

We're sorry, but something went wrong.

-
-

If you are the application owner check the logs for more information.

-
- - diff --git a/Team-Manager/public/apple-touch-icon-precomposed.png b/Team-Manager/public/apple-touch-icon-precomposed.png deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/public/apple-touch-icon.png b/Team-Manager/public/apple-touch-icon.png deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/public/favicon.ico b/Team-Manager/public/favicon.ico deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/public/robots.txt b/Team-Manager/public/robots.txt deleted file mode 100644 index 3c9c7c0..0000000 --- a/Team-Manager/public/robots.txt +++ /dev/null @@ -1,5 +0,0 @@ -# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file -# -# To ban all spiders from the entire site uncomment the next two lines: -# User-agent: * -# Disallow: / diff --git a/Team-Manager/test/controllers/.keep b/Team-Manager/test/controllers/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/test/controllers/certifications_controller_test.rb b/Team-Manager/test/controllers/certifications_controller_test.rb deleted file mode 100644 index 0e24fa2..0000000 --- a/Team-Manager/test/controllers/certifications_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class CertificationsControllerTest < ActionDispatch::IntegrationTest - setup do - @certification = certifications(:one) - end - - test "should get index" do - get certifications_url - assert_response :success - end - - test "should get new" do - get new_certification_url - assert_response :success - end - - test "should create certification" do - assert_difference('Certification.count') do - post certifications_url, params: { certification: { certification_name: @certification.certification_name, expiration_date: @certification.expiration_date, note: @certification.note, person_id_id: @certification.person_id_id } } - end - - assert_redirected_to certification_url(Certification.last) - end - - test "should show certification" do - get certification_url(@certification) - assert_response :success - end - - test "should get edit" do - get edit_certification_url(@certification) - assert_response :success - end - - test "should update certification" do - patch certification_url(@certification), params: { certification: { certification_name: @certification.certification_name, expiration_date: @certification.expiration_date, note: @certification.note, person_id_id: @certification.person_id_id } } - assert_redirected_to certification_url(@certification) - end - - test "should destroy certification" do - assert_difference('Certification.count', -1) do - delete certification_url(@certification) - end - - assert_redirected_to certifications_url - end -end diff --git a/Team-Manager/test/controllers/coaches_controller_test.rb b/Team-Manager/test/controllers/coaches_controller_test.rb deleted file mode 100644 index f425fd9..0000000 --- a/Team-Manager/test/controllers/coaches_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class CoachesControllerTest < ActionDispatch::IntegrationTest - setup do - @coach = coaches(:one) - end - - test "should get index" do - get coaches_url - assert_response :success - end - - test "should get new" do - get new_coach_url - assert_response :success - end - - test "should create coach" do - assert_difference('Coach.count') do - post coaches_url, params: { coach: { coach_id: @coach.coach_id, coach_type: @coach.coach_type, coach_year_began: @coach.coach_year_began, coach_year_ended: @coach.coach_year_ended, person_id_id: @coach.person_id_id } } - end - - assert_redirected_to coach_url(Coach.last) - end - - test "should show coach" do - get coach_url(@coach) - assert_response :success - end - - test "should get edit" do - get edit_coach_url(@coach) - assert_response :success - end - - test "should update coach" do - patch coach_url(@coach), params: { coach: { coach_id: @coach.coach_id, coach_type: @coach.coach_type, coach_year_began: @coach.coach_year_began, coach_year_ended: @coach.coach_year_ended, person_id_id: @coach.person_id_id } } - assert_redirected_to coach_url(@coach) - end - - test "should destroy coach" do - assert_difference('Coach.count', -1) do - delete coach_url(@coach) - end - - assert_redirected_to coaches_url - end -end diff --git a/Team-Manager/test/controllers/emails_controller_test.rb b/Team-Manager/test/controllers/emails_controller_test.rb deleted file mode 100644 index 0312252..0000000 --- a/Team-Manager/test/controllers/emails_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class EmailsControllerTest < ActionDispatch::IntegrationTest - setup do - @email = emails(:one) - end - - test "should get index" do - get emails_url - assert_response :success - end - - test "should get new" do - get new_email_url - assert_response :success - end - - test "should create email" do - assert_difference('Email.count') do - post emails_url, params: { email: { email: @email.email, person_id: @email.person_id } } - end - - assert_redirected_to email_url(Email.last) - end - - test "should show email" do - get email_url(@email) - assert_response :success - end - - test "should get edit" do - get edit_email_url(@email) - assert_response :success - end - - test "should update email" do - patch email_url(@email), params: { email: { email: @email.email, person_id: @email.person_id } } - assert_redirected_to email_url(@email) - end - - test "should destroy email" do - assert_difference('Email.count', -1) do - delete email_url(@email) - end - - assert_redirected_to emails_url - end -end diff --git a/Team-Manager/test/controllers/event_property_maps_controller_test.rb b/Team-Manager/test/controllers/event_property_maps_controller_test.rb deleted file mode 100644 index 1aa9cdc..0000000 --- a/Team-Manager/test/controllers/event_property_maps_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class EventPropertyMapsControllerTest < ActionDispatch::IntegrationTest - setup do - @event_property_map = event_property_maps(:one) - end - - test "should get index" do - get event_property_maps_url - assert_response :success - end - - test "should get new" do - get new_event_property_map_url - assert_response :success - end - - test "should create event_property_map" do - assert_difference('EventPropertyMap.count') do - post event_property_maps_url, params: { event_property_map: { event_id_id: @event_property_map.event_id_id, key: @event_property_map.key, value: @event_property_map.value } } - end - - assert_redirected_to event_property_map_url(EventPropertyMap.last) - end - - test "should show event_property_map" do - get event_property_map_url(@event_property_map) - assert_response :success - end - - test "should get edit" do - get edit_event_property_map_url(@event_property_map) - assert_response :success - end - - test "should update event_property_map" do - patch event_property_map_url(@event_property_map), params: { event_property_map: { event_id_id: @event_property_map.event_id_id, key: @event_property_map.key, value: @event_property_map.value } } - assert_redirected_to event_property_map_url(@event_property_map) - end - - test "should destroy event_property_map" do - assert_difference('EventPropertyMap.count', -1) do - delete event_property_map_url(@event_property_map) - end - - assert_redirected_to event_property_maps_url - end -end diff --git a/Team-Manager/test/controllers/event_types_controller_test.rb b/Team-Manager/test/controllers/event_types_controller_test.rb deleted file mode 100644 index f64b4e9..0000000 --- a/Team-Manager/test/controllers/event_types_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class EventTypesControllerTest < ActionDispatch::IntegrationTest - setup do - @event_type = event_types(:one) - end - - test "should get index" do - get event_types_url - assert_response :success - end - - test "should get new" do - get new_event_type_url - assert_response :success - end - - test "should create event_type" do - assert_difference('EventType.count') do - post event_types_url, params: { event_type: { event_type_id: @event_type.event_type_id, type_description: @event_type.type_description } } - end - - assert_redirected_to event_type_url(EventType.last) - end - - test "should show event_type" do - get event_type_url(@event_type) - assert_response :success - end - - test "should get edit" do - get edit_event_type_url(@event_type) - assert_response :success - end - - test "should update event_type" do - patch event_type_url(@event_type), params: { event_type: { event_type_id: @event_type.event_type_id, type_description: @event_type.type_description } } - assert_redirected_to event_type_url(@event_type) - end - - test "should destroy event_type" do - assert_difference('EventType.count', -1) do - delete event_type_url(@event_type) - end - - assert_redirected_to event_types_url - end -end diff --git a/Team-Manager/test/controllers/events_controller_test.rb b/Team-Manager/test/controllers/events_controller_test.rb deleted file mode 100644 index 8378e71..0000000 --- a/Team-Manager/test/controllers/events_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class EventsControllerTest < ActionDispatch::IntegrationTest - setup do - @event = events(:one) - end - - test "should get index" do - get events_url - assert_response :success - end - - test "should get new" do - get new_event_url - assert_response :success - end - - test "should create event" do - assert_difference('Event.count') do - post events_url, params: { event: { created_by: @event.created_by, event_datetime: @event.event_datetime, event_id: @event.event_id, event_type_id: @event.event_type_id, open_to_public: @event.open_to_public, team_id_id: @event.team_id_id } } - end - - assert_redirected_to event_url(Event.last) - end - - test "should show event" do - get event_url(@event) - assert_response :success - end - - test "should get edit" do - get edit_event_url(@event) - assert_response :success - end - - test "should update event" do - patch event_url(@event), params: { event: { created_by: @event.created_by, event_datetime: @event.event_datetime, event_id: @event.event_id, event_type_id: @event.event_type_id, open_to_public: @event.open_to_public, team_id_id: @event.team_id_id } } - assert_redirected_to event_url(@event) - end - - test "should destroy event" do - assert_difference('Event.count', -1) do - delete event_url(@event) - end - - assert_redirected_to events_url - end -end diff --git a/Team-Manager/test/controllers/organization_teams_controller_test.rb b/Team-Manager/test/controllers/organization_teams_controller_test.rb deleted file mode 100644 index 6a641a5..0000000 --- a/Team-Manager/test/controllers/organization_teams_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class OrganizationTeamsControllerTest < ActionDispatch::IntegrationTest - setup do - @organization_team = organization_teams(:one) - end - - test "should get index" do - get organization_teams_url - assert_response :success - end - - test "should get new" do - get new_organization_team_url - assert_response :success - end - - test "should create organization_team" do - assert_difference('OrganizationTeam.count') do - post organization_teams_url, params: { organization_team: { organization_id_id: @organization_team.organization_id_id, team_id_id: @organization_team.team_id_id } } - end - - assert_redirected_to organization_team_url(OrganizationTeam.last) - end - - test "should show organization_team" do - get organization_team_url(@organization_team) - assert_response :success - end - - test "should get edit" do - get edit_organization_team_url(@organization_team) - assert_response :success - end - - test "should update organization_team" do - patch organization_team_url(@organization_team), params: { organization_team: { organization_id_id: @organization_team.organization_id_id, team_id_id: @organization_team.team_id_id } } - assert_redirected_to organization_team_url(@organization_team) - end - - test "should destroy organization_team" do - assert_difference('OrganizationTeam.count', -1) do - delete organization_team_url(@organization_team) - end - - assert_redirected_to organization_teams_url - end -end diff --git a/Team-Manager/test/controllers/organizations_controller_test.rb b/Team-Manager/test/controllers/organizations_controller_test.rb deleted file mode 100644 index 8b17476..0000000 --- a/Team-Manager/test/controllers/organizations_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class OrganizationsControllerTest < ActionDispatch::IntegrationTest - setup do - @organization = organizations(:one) - end - - test "should get index" do - get organizations_url - assert_response :success - end - - test "should get new" do - get new_organization_url - assert_response :success - end - - test "should create organization" do - assert_difference('Organization.count') do - post organizations_url, params: { organization: { name: @organization.name, organization_id: @organization.organization_id } } - end - - assert_redirected_to organization_url(Organization.last) - end - - test "should show organization" do - get organization_url(@organization) - assert_response :success - end - - test "should get edit" do - get edit_organization_url(@organization) - assert_response :success - end - - test "should update organization" do - patch organization_url(@organization), params: { organization: { name: @organization.name, organization_id: @organization.organization_id } } - assert_redirected_to organization_url(@organization) - end - - test "should destroy organization" do - assert_difference('Organization.count', -1) do - delete organization_url(@organization) - end - - assert_redirected_to organizations_url - end -end diff --git a/Team-Manager/test/controllers/parent_children_controller_test.rb b/Team-Manager/test/controllers/parent_children_controller_test.rb deleted file mode 100644 index fa87067..0000000 --- a/Team-Manager/test/controllers/parent_children_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class ParentChildrenControllerTest < ActionDispatch::IntegrationTest - setup do - @parent_child = parent_children(:one) - end - - test "should get index" do - get parent_children_url - assert_response :success - end - - test "should get new" do - get new_parent_child_url - assert_response :success - end - - test "should create parent_child" do - assert_difference('ParentChild.count') do - post parent_children_url, params: { parent_child: { child_id_id: @parent_child.child_id_id, parent_id_id: @parent_child.parent_id_id } } - end - - assert_redirected_to parent_child_url(ParentChild.last) - end - - test "should show parent_child" do - get parent_child_url(@parent_child) - assert_response :success - end - - test "should get edit" do - get edit_parent_child_url(@parent_child) - assert_response :success - end - - test "should update parent_child" do - patch parent_child_url(@parent_child), params: { parent_child: { child_id_id: @parent_child.child_id_id, parent_id_id: @parent_child.parent_id_id } } - assert_redirected_to parent_child_url(@parent_child) - end - - test "should destroy parent_child" do - assert_difference('ParentChild.count', -1) do - delete parent_child_url(@parent_child) - end - - assert_redirected_to parent_children_url - end -end diff --git a/Team-Manager/test/controllers/people_controller_test.rb b/Team-Manager/test/controllers/people_controller_test.rb deleted file mode 100644 index 3d1f22a..0000000 --- a/Team-Manager/test/controllers/people_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class PeopleControllerTest < ActionDispatch::IntegrationTest - setup do - @person = people(:one) - end - - test "should get index" do - get people_url - assert_response :success - end - - test "should get new" do - get new_person_url - assert_response :success - end - - test "should create person" do - assert_difference('Person.count') do - post people_url, params: { person: { addr_city: @person.addr_city, addr_route: @person.addr_route, addr_state: @person.addr_state, addr_zip: @person.addr_zip, bio: @person.bio, birth_date: @person.birth_date, first_name: @person.first_name, gender: @person.gender, height_in_inches: @person.height_in_inches, last_name: @person.last_name, pass_hash: @person.pass_hash, pass_salt: @person.pass_salt, shoe_size: @person.shoe_size, username: @person.username, weight_in_pounds: @person.weight_in_pounds } } - end - - assert_redirected_to person_url(Person.last) - end - - test "should show person" do - get person_url(@person) - assert_response :success - end - - test "should get edit" do - get edit_person_url(@person) - assert_response :success - end - - test "should update person" do - patch person_url(@person), params: { person: { addr_city: @person.addr_city, addr_route: @person.addr_route, addr_state: @person.addr_state, addr_zip: @person.addr_zip, bio: @person.bio, birth_date: @person.birth_date, first_name: @person.first_name, gender: @person.gender, height_in_inches: @person.height_in_inches, last_name: @person.last_name, pass_hash: @person.pass_hash, pass_salt: @person.pass_salt, shoe_size: @person.shoe_size, username: @person.username, weight_in_pounds: @person.weight_in_pounds } } - assert_redirected_to person_url(@person) - end - - test "should destroy person" do - assert_difference('Person.count', -1) do - delete person_url(@person) - end - - assert_redirected_to people_url - end -end diff --git a/Team-Manager/test/controllers/phone_numbers_controller_test.rb b/Team-Manager/test/controllers/phone_numbers_controller_test.rb deleted file mode 100644 index 94824b2..0000000 --- a/Team-Manager/test/controllers/phone_numbers_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class PhoneNumbersControllerTest < ActionDispatch::IntegrationTest - setup do - @phone_number = phone_numbers(:one) - end - - test "should get index" do - get phone_numbers_url - assert_response :success - end - - test "should get new" do - get new_phone_number_url - assert_response :success - end - - test "should create phone_number" do - assert_difference('PhoneNumber.count') do - post phone_numbers_url, params: { phone_number: { person_id: @phone_number.person_id, phone: @phone_number.phone } } - end - - assert_redirected_to phone_number_url(PhoneNumber.last) - end - - test "should show phone_number" do - get phone_number_url(@phone_number) - assert_response :success - end - - test "should get edit" do - get edit_phone_number_url(@phone_number) - assert_response :success - end - - test "should update phone_number" do - patch phone_number_url(@phone_number), params: { phone_number: { person_id: @phone_number.person_id, phone: @phone_number.phone } } - assert_redirected_to phone_number_url(@phone_number) - end - - test "should destroy phone_number" do - assert_difference('PhoneNumber.count', -1) do - delete phone_number_url(@phone_number) - end - - assert_redirected_to phone_numbers_url - end -end diff --git a/Team-Manager/test/controllers/player_statistics_controller_test.rb b/Team-Manager/test/controllers/player_statistics_controller_test.rb deleted file mode 100644 index 16a69c7..0000000 --- a/Team-Manager/test/controllers/player_statistics_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class PlayerStatisticsControllerTest < ActionDispatch::IntegrationTest - setup do - @player_statistic = player_statistics(:one) - end - - test "should get index" do - get player_statistics_url - assert_response :success - end - - test "should get new" do - get new_player_statistic_url - assert_response :success - end - - test "should create player_statistic" do - assert_difference('PlayerStatistic.count') do - post player_statistics_url, params: { player_statistic: { date_recorded: @player_statistic.date_recorded, player_id_id: @player_statistic.player_id_id, stat_id: @player_statistic.stat_id, statistic_type: @player_statistic.statistic_type, statistic_value: @player_statistic.statistic_value } } - end - - assert_redirected_to player_statistic_url(PlayerStatistic.last) - end - - test "should show player_statistic" do - get player_statistic_url(@player_statistic) - assert_response :success - end - - test "should get edit" do - get edit_player_statistic_url(@player_statistic) - assert_response :success - end - - test "should update player_statistic" do - patch player_statistic_url(@player_statistic), params: { player_statistic: { date_recorded: @player_statistic.date_recorded, player_id_id: @player_statistic.player_id_id, stat_id: @player_statistic.stat_id, statistic_type: @player_statistic.statistic_type, statistic_value: @player_statistic.statistic_value } } - assert_redirected_to player_statistic_url(@player_statistic) - end - - test "should destroy player_statistic" do - assert_difference('PlayerStatistic.count', -1) do - delete player_statistic_url(@player_statistic) - end - - assert_redirected_to player_statistics_url - end -end diff --git a/Team-Manager/test/controllers/players_controller_test.rb b/Team-Manager/test/controllers/players_controller_test.rb deleted file mode 100644 index 50bee5e..0000000 --- a/Team-Manager/test/controllers/players_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class PlayersControllerTest < ActionDispatch::IntegrationTest - setup do - @player = players(:one) - end - - test "should get index" do - get players_url - assert_response :success - end - - test "should get new" do - get new_player_url - assert_response :success - end - - test "should create player" do - assert_difference('Player.count') do - post players_url, params: { player: { player_coach_id_id: @player.player_coach_id_id, player_jersey_id: @player.player_jersey_id, team_join_date: @player.team_join_date, team_left_date: @player.team_left_date } } - end - - assert_redirected_to player_url(Player.last) - end - - test "should show player" do - get player_url(@player) - assert_response :success - end - - test "should get edit" do - get edit_player_url(@player) - assert_response :success - end - - test "should update player" do - patch player_url(@player), params: { player: { player_coach_id_id: @player.player_coach_id_id, player_jersey_id: @player.player_jersey_id, team_join_date: @player.team_join_date, team_left_date: @player.team_left_date } } - assert_redirected_to player_url(@player) - end - - test "should destroy player" do - assert_difference('Player.count', -1) do - delete player_url(@player) - end - - assert_redirected_to players_url - end -end diff --git a/Team-Manager/test/controllers/team_people_controller_test.rb b/Team-Manager/test/controllers/team_people_controller_test.rb deleted file mode 100644 index 823c777..0000000 --- a/Team-Manager/test/controllers/team_people_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class TeamPeopleControllerTest < ActionDispatch::IntegrationTest - setup do - @team_person = team_people(:one) - end - - test "should get index" do - get team_people_url - assert_response :success - end - - test "should get new" do - get new_team_person_url - assert_response :success - end - - test "should create team_person" do - assert_difference('TeamPerson.count') do - post team_people_url, params: { team_person: { person_id_id: @team_person.person_id_id, team_id_id: @team_person.team_id_id } } - end - - assert_redirected_to team_person_url(TeamPerson.last) - end - - test "should show team_person" do - get team_person_url(@team_person) - assert_response :success - end - - test "should get edit" do - get edit_team_person_url(@team_person) - assert_response :success - end - - test "should update team_person" do - patch team_person_url(@team_person), params: { team_person: { person_id_id: @team_person.person_id_id, team_id_id: @team_person.team_id_id } } - assert_redirected_to team_person_url(@team_person) - end - - test "should destroy team_person" do - assert_difference('TeamPerson.count', -1) do - delete team_person_url(@team_person) - end - - assert_redirected_to team_people_url - end -end diff --git a/Team-Manager/test/controllers/teams_controller_test.rb b/Team-Manager/test/controllers/teams_controller_test.rb deleted file mode 100644 index 68fa541..0000000 --- a/Team-Manager/test/controllers/teams_controller_test.rb +++ /dev/null @@ -1,48 +0,0 @@ -require 'test_helper' - -class TeamsControllerTest < ActionDispatch::IntegrationTest - setup do - @team = teams(:one) - end - - test "should get index" do - get teams_url - assert_response :success - end - - test "should get new" do - get new_team_url - assert_response :success - end - - test "should create team" do - assert_difference('Team.count') do - post teams_url, params: { team: { age_group: @team.age_group, competitive: @team.competitive, organization_id: @team.organization_id, team_id: @team.team_id, team_name: @team.team_name } } - end - - assert_redirected_to team_url(Team.last) - end - - test "should show team" do - get team_url(@team) - assert_response :success - end - - test "should get edit" do - get edit_team_url(@team) - assert_response :success - end - - test "should update team" do - patch team_url(@team), params: { team: { age_group: @team.age_group, competitive: @team.competitive, organization_id: @team.organization_id, team_id: @team.team_id, team_name: @team.team_name } } - assert_redirected_to team_url(@team) - end - - test "should destroy team" do - assert_difference('Team.count', -1) do - delete team_url(@team) - end - - assert_redirected_to teams_url - end -end diff --git a/Team-Manager/test/fixtures/.keep b/Team-Manager/test/fixtures/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/test/fixtures/certifications.yml b/Team-Manager/test/fixtures/certifications.yml deleted file mode 100644 index 2d25390..0000000 --- a/Team-Manager/test/fixtures/certifications.yml +++ /dev/null @@ -1,13 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - person_id: one - certification_name: MyString - expiration_date: 2016-09-26 - note: MyText - -two: - person_id: two - certification_name: MyString - expiration_date: 2016-09-26 - note: MyText diff --git a/Team-Manager/test/fixtures/coaches.yml b/Team-Manager/test/fixtures/coaches.yml deleted file mode 100644 index 8edc652..0000000 --- a/Team-Manager/test/fixtures/coaches.yml +++ /dev/null @@ -1,15 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - person_id: one - coach_type: MyString - coach_year_began: 2016-09-26 - coach_year_ended: 2016-09-26 - coach_id: 1 - -two: - person_id: two - coach_type: MyString - coach_year_began: 2016-09-26 - coach_year_ended: 2016-09-26 - coach_id: 1 diff --git a/Team-Manager/test/fixtures/emails.yml b/Team-Manager/test/fixtures/emails.yml deleted file mode 100644 index 31c52c6..0000000 --- a/Team-Manager/test/fixtures/emails.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - email: MyString - person: one - -two: - email: MyString - person: two diff --git a/Team-Manager/test/fixtures/event_property_maps.yml b/Team-Manager/test/fixtures/event_property_maps.yml deleted file mode 100644 index 542669b..0000000 --- a/Team-Manager/test/fixtures/event_property_maps.yml +++ /dev/null @@ -1,11 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - event_id: one - key: MyString - value: MyString - -two: - event_id: two - key: MyString - value: MyString diff --git a/Team-Manager/test/fixtures/event_types.yml b/Team-Manager/test/fixtures/event_types.yml deleted file mode 100644 index fa2cc6e..0000000 --- a/Team-Manager/test/fixtures/event_types.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - event_type_id: 1 - type_description: MyString - -two: - event_type_id: 1 - type_description: MyString diff --git a/Team-Manager/test/fixtures/events.yml b/Team-Manager/test/fixtures/events.yml deleted file mode 100644 index 259d9db..0000000 --- a/Team-Manager/test/fixtures/events.yml +++ /dev/null @@ -1,17 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - event_id: 1 - event_type: one - event_datetime: 2016-09-26 - team_id: one - created_by: 1 - open_to_public: false - -two: - event_id: 1 - event_type: two - event_datetime: 2016-09-26 - team_id: two - created_by: 1 - open_to_public: false diff --git a/Team-Manager/test/fixtures/files/.keep b/Team-Manager/test/fixtures/files/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/test/fixtures/organization_teams.yml b/Team-Manager/test/fixtures/organization_teams.yml deleted file mode 100644 index 5a5fbc3..0000000 --- a/Team-Manager/test/fixtures/organization_teams.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - organization_id: one - team_id: one - -two: - organization_id: two - team_id: two diff --git a/Team-Manager/test/fixtures/organizations.yml b/Team-Manager/test/fixtures/organizations.yml deleted file mode 100644 index 1bbf4c2..0000000 --- a/Team-Manager/test/fixtures/organizations.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - organization_id: 1 - name: MyString - -two: - organization_id: 1 - name: MyString diff --git a/Team-Manager/test/fixtures/parent_children.yml b/Team-Manager/test/fixtures/parent_children.yml deleted file mode 100644 index 5aff66b..0000000 --- a/Team-Manager/test/fixtures/parent_children.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - parent_id: one - child_id: one - -two: - parent_id: two - child_id: two diff --git a/Team-Manager/test/fixtures/people.yml b/Team-Manager/test/fixtures/people.yml deleted file mode 100644 index d600ded..0000000 --- a/Team-Manager/test/fixtures/people.yml +++ /dev/null @@ -1,35 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - first_name: MyString - last_name: MyString - addr_route: MyString - addr_city: MyString - addr_state: MyString - addr_zip: 1 - username: MyString - pass_hash: MyString - pass_salt: MyString - bio: MyText - birth_date: 2016-09-26 - gender: MyString - height_in_inches: 1 - weight_in_pounds: 1 - shoe_size: MyString - -two: - first_name: MyString - last_name: MyString - addr_route: MyString - addr_city: MyString - addr_state: MyString - addr_zip: 1 - username: MyString - pass_hash: MyString - pass_salt: MyString - bio: MyText - birth_date: 2016-09-26 - gender: MyString - height_in_inches: 1 - weight_in_pounds: 1 - shoe_size: MyString diff --git a/Team-Manager/test/fixtures/phone_numbers.yml b/Team-Manager/test/fixtures/phone_numbers.yml deleted file mode 100644 index 85f6a1a..0000000 --- a/Team-Manager/test/fixtures/phone_numbers.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - phone: MyString - person: one - -two: - phone: MyString - person: two diff --git a/Team-Manager/test/fixtures/player_statistics.yml b/Team-Manager/test/fixtures/player_statistics.yml deleted file mode 100644 index a9ba491..0000000 --- a/Team-Manager/test/fixtures/player_statistics.yml +++ /dev/null @@ -1,15 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - player_id: one - statistic_type: MyString - statistic_value: MyString - date_recorded: 2016-09-26 - stat_id: 1 - -two: - player_id: two - statistic_type: MyString - statistic_value: MyString - date_recorded: 2016-09-26 - stat_id: 1 diff --git a/Team-Manager/test/fixtures/players.yml b/Team-Manager/test/fixtures/players.yml deleted file mode 100644 index 08c4f58..0000000 --- a/Team-Manager/test/fixtures/players.yml +++ /dev/null @@ -1,13 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - player_coach_id: one - player_jersey_id: 1 - team_join_date: 2016-09-25 - team_left_date: 2016-09-25 - -two: - player_coach_id: two - player_jersey_id: 1 - team_join_date: 2016-09-25 - team_left_date: 2016-09-25 diff --git a/Team-Manager/test/fixtures/team_people.yml b/Team-Manager/test/fixtures/team_people.yml deleted file mode 100644 index b2043f3..0000000 --- a/Team-Manager/test/fixtures/team_people.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - person_id: one - team_id: one - -two: - person_id: two - team_id: two diff --git a/Team-Manager/test/fixtures/teams.yml b/Team-Manager/test/fixtures/teams.yml deleted file mode 100644 index d53a4f9..0000000 --- a/Team-Manager/test/fixtures/teams.yml +++ /dev/null @@ -1,15 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - team_id: 1 - organization_id: 1 - team_name: MyString - competitive: false - age_group: MyString - -two: - team_id: 1 - organization_id: 1 - team_name: MyString - competitive: false - age_group: MyString diff --git a/Team-Manager/test/helpers/.keep b/Team-Manager/test/helpers/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/test/integration/.keep b/Team-Manager/test/integration/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/test/mailers/.keep b/Team-Manager/test/mailers/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/test/models/.keep b/Team-Manager/test/models/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/test/models/certification_test.rb b/Team-Manager/test/models/certification_test.rb deleted file mode 100644 index ceadf95..0000000 --- a/Team-Manager/test/models/certification_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class CertificationTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/coach_test.rb b/Team-Manager/test/models/coach_test.rb deleted file mode 100644 index 0a258b8..0000000 --- a/Team-Manager/test/models/coach_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class CoachTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/email_test.rb b/Team-Manager/test/models/email_test.rb deleted file mode 100644 index dc054e5..0000000 --- a/Team-Manager/test/models/email_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class EmailTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/event_property_map_test.rb b/Team-Manager/test/models/event_property_map_test.rb deleted file mode 100644 index 6e589c7..0000000 --- a/Team-Manager/test/models/event_property_map_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class EventPropertyMapTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/event_test.rb b/Team-Manager/test/models/event_test.rb deleted file mode 100644 index c6f1566..0000000 --- a/Team-Manager/test/models/event_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class EventTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/event_type_test.rb b/Team-Manager/test/models/event_type_test.rb deleted file mode 100644 index 0d42331..0000000 --- a/Team-Manager/test/models/event_type_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class EventTypeTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/organization_team_test.rb b/Team-Manager/test/models/organization_team_test.rb deleted file mode 100644 index b18d712..0000000 --- a/Team-Manager/test/models/organization_team_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class OrganizationTeamTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/organization_test.rb b/Team-Manager/test/models/organization_test.rb deleted file mode 100644 index d144816..0000000 --- a/Team-Manager/test/models/organization_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class OrganizationTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/parent_child_test.rb b/Team-Manager/test/models/parent_child_test.rb deleted file mode 100644 index 2776530..0000000 --- a/Team-Manager/test/models/parent_child_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class ParentChildTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/person_test.rb b/Team-Manager/test/models/person_test.rb deleted file mode 100644 index ad04ed8..0000000 --- a/Team-Manager/test/models/person_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class PersonTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/phone_number_test.rb b/Team-Manager/test/models/phone_number_test.rb deleted file mode 100644 index 74b8739..0000000 --- a/Team-Manager/test/models/phone_number_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class PhoneNumberTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/player_statistic_test.rb b/Team-Manager/test/models/player_statistic_test.rb deleted file mode 100644 index db4fb71..0000000 --- a/Team-Manager/test/models/player_statistic_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class PlayerStatisticTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/player_test.rb b/Team-Manager/test/models/player_test.rb deleted file mode 100644 index 3cf71d7..0000000 --- a/Team-Manager/test/models/player_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class PlayerTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/team_person_test.rb b/Team-Manager/test/models/team_person_test.rb deleted file mode 100644 index fbf2e89..0000000 --- a/Team-Manager/test/models/team_person_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class TeamPersonTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/models/team_test.rb b/Team-Manager/test/models/team_test.rb deleted file mode 100644 index 8b101cb..0000000 --- a/Team-Manager/test/models/team_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class TeamTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/Team-Manager/test/test_helper.rb b/Team-Manager/test/test_helper.rb deleted file mode 100644 index 92e39b2..0000000 --- a/Team-Manager/test/test_helper.rb +++ /dev/null @@ -1,10 +0,0 @@ -ENV['RAILS_ENV'] ||= 'test' -require File.expand_path('../../config/environment', __FILE__) -require 'rails/test_help' - -class ActiveSupport::TestCase - # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. - fixtures :all - - # Add more helper methods to be used by all tests here... -end diff --git a/Team-Manager/tmp/.keep b/Team-Manager/tmp/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/vendor/assets/javascripts/.keep b/Team-Manager/vendor/assets/javascripts/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/Team-Manager/vendor/assets/stylesheets/.keep b/Team-Manager/vendor/assets/stylesheets/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/artifacts/sports_org_erd_v2.mwb b/artifacts/sports_org_erd_v2.mwb deleted file mode 100644 index 00be401c75834fe0886315a55c5bbc3d5d85f7da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20815 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 F{|CBUQt1Ey diff --git a/artifacts/sports_org_erd_v4.mwb b/artifacts/sports_org_erd_v4.mwb deleted file mode 100644 index 8f01a6dce9a03a98e6470fd19c22d4dabdaf2929..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 23200 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 C6V9yw diff --git a/artifacts/sports_org_erd_v5.mwb b/artifacts/sports_org_erd_v5.mwb deleted file mode 100644 index ae8ec9266080d31545ea4e02f7e254b4b1a2c015..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22959 zcmZs?1yCGc@Gi=-c#y?{yAvR|%i?Z}6D+v9>*DV2?(PsExC9Ns-5r7xG`al#_tksv zR^6JaGjnFn%$b_$KK=FA-74}xI2;%l7$g|iGJaWj$4xvu85kJ!UU(SL`&m;56E{0E zdsh}a4`UWjJKKw%FD^vVX_qg8w+uM^pI;_dWRKo^XQ}stH6bd zu(mKMweF8y`3easGRV}`Dv~hprs3hhATi2nMved*v$}t}0Z)d#hB>{D+B0~`D|hvu zXOVrMdJW!Q46BTFx_PrdD~~omNjAQo$rJy(D#}XL!n=3%`u6Io^Y8v3K7aEqpUmKO zYvpxGRft)n`_V~r;pp=vx0Lengx0^myTgXUACI)|qtD`}r2bV*98BOvAG}uS1z9;^ zZoOW#rDA*B(tI{lsOtSbJC3JW1XrY{8Ghp|FK$m38$)Ej0LQ^`(mmWCIG4Gjmj z;3+LRHLdU8F1#Iu1+r6ypMFf;m)IK}l9vy`nr6bze?_8h#?q!G&>Vo58(y`KVHin> z@Vxb}6?wZqP@G$0HvDt$vZeGn{dVq-Kyt*9Gwrj3w~w&S(D$_F6ZTD9$A2jHTYkH8 z>m|I|cz8Uy6?Fk$x?g|qkj{(6Zrfp0$v)RDSWHw8JG<}fUU{C+nP@L%|M^F`k(*2w z{ZxPddT8@mvsZA_!~oJ+HrhO4MjX54fA>r_@;Ogo#{RF>^K*Lr-bDSOZ zKE8i?W<0Df8ulB)h4uU&TRH>=HFG=sT<$k_4_3?Xhlbw1ZE(629t2TT!OVeRtrOrN zln5;xIP7>J6ZeZrGm}cs(EX!4&J%eq{?5mi$D^mnSPtsx?`OiEcDZKD0N6@^I{XJz zEF^7s+}jM7bkd6~VHrL35NCgZCws!TU&XD;$QqWn<#$gg{u#NUKfK=BpUzKjCQk34 zY6Y-Q`|V{`dWbG}-#X~+`5Uy~u$J<=3^z_Y*SXuhnGytO_fphZ<1nHmi3wSRX)1vu zdh8#WbYHYti5YZ_Up06Zw?ds}2lYJ#x^$Jw{*aEmPJb~Jib4Dq6dBaxcHsXx%e~;d z5O{eSU@&~*zZN_^RgcyMRwWB|zW=?@U5AA{N9Q1L`-E}1m#x?(@pAmD{KWS8fO z=&TvYi8x{w@AlaQ3LZTl+#l93?(b}$c8Gko`)O(CW~6>8;u(AoQVw{WNH)rdGs3_g znx3v_DQoxBd27=4L0rYWC|kG#Q#Wqfd<9T#0<9x~C^9D^?Q7qr`K(+Qt*ExaA(^`#B!fF8~6%Y ze$Q<{tFvIpN^zhW#+E-63AGak@YaSYw zI<2UHm-blc%T^vwf{p2wJ6DL^`t*6XH8&fND`)o4>&BNy%XV%!IJ}Q27J^6=g!7zy zdI&ZIxrV36w-DY>82F$fq7e>qcbEv+i3N(cVJ0yxN#kWv9qr%HL-)(q@J3D~e!BJl~SPGQZZOr>o5B5oC<0-pn@j0LCdhx$PM$m8}BQbV*6^i|gWS<`duRJys6 zV2oT11US-baBLZv>Jv<;fm&cqdm0G~74N}H?E4%c@AsGwjl@LE?Wjpfe30mX#w5wX z)M`k;#gK-yjlh)T+^$D$Ckh)$jPZA2ii=Aihwn*kD@4dd^z;u>y3==o>>gpLNRY~q zB#v@{r>F>!F9^J8NXP@-9^sSWQD%6?M!p~w^wCh>1jjPNkN2;i1oej7NrT0oUp5@e zo@+KSq+V^DGm&Qx$p>62YsmY&9AG5JfVE5rdMHvPu@2)v;p&eS!VvJqHo4#1#<9QDCC!LQn~%hecW-j**fCkPjh=34fII>#MS6qg@Hb$0wscTnQax zdH?$Oisl69cH69CPMP6%ygQ(J3IPo9U|_wea53pe;wp{fpLIW24gGm*ok42yBodNl zXkK0=&;(u|j9}OhqkZJ~&psF{KAuoai~AP2LiJ3H*e4Z7?z-xfj_1cma{N%fjgg;^ zVA;fAJ(q+tTHi+%?6g{Y4u_=S+KNYPX@@KZWG2+}B-&Gx3s##E5k zhfJLG=4z`{*;zSW#FGxfenJ^YOr0!6d;|{T(I!4I!+4GlRr32tCgI7`x#4|7X)mVP z7Nij^4}bpH+!)~X#{F77xAmd<=^D5E!(1(w0TY>C!gRFqKb?T*-rFBd_WCEmqU+*Q zsjS)3w`PPsPF==+{(FILHg;Ot82Vm9wWnJST76br3}>X)aqFB}3TUUfamDz+DI|HW z7Ni7J6Qh)pepXwdVH-s>*aaDgYPYR;WL22ZM$*S&ZSGFKKN3~2{Pu!yaw_QbxBRPS z4Atyvd7>!6UIlr$qd9$;3}h!ugRSw>VeNI+bL(snJb&nrJ@1U=04`ZFQ3_ z-KyJGee-(JNS5P`53WY`e(p#^%$PMb5OM=3@7SstDE&hEHzVtvldZ#c9nP1Z+WS3v z{`W5PE4Pk+gyt3HM#GeToZ@+c4}zo6XQ|}dA2(|0HaZ*gHeF{&?ezik4*z_b|0;YG znW4iQepQ=r=CKL$DEHS>r2E%>dgm&VZHD&ZM83H4_M=f18*lj1!J?O$`^{BIq}ot< zuSVD1YA5|{qXPrSshzmtRE#>`%N8)*51mciUH9od~%a z8NRn>e6CObWjf|TeKWX`kC!~|-;w2>d6mDW?P^&tNR=_;|Dif+KU*PVc)>E5uel7* zgXmO{{gQieXSzntzD(#NPo{^}fbtB)ZAq)Xd@hqCyStU+vV4-3d)cI#tIoiyxaVLCh2`|0*X}oFG)|bVB$Wv>Yg=clWqfz7R zw7fdjLYA*S+Ke!%5fPsfy#N;fJNV8gW-SI8avL-j)_R=n#;mc|Ko)hfvb3@Hne{cV z;DN_hqxo<7$Mf#B&Ubn;^2SM`!|A!XY{xij~q>(kN9CxBR0Y&0smh38w ze_xBOhmx>AHyZb86Y2X??Y`kq4v`tioCT!^k$}03`|+`YE2M058zd0XT7uzJ0zoP{ z)_uU;4Djbn!EH4e?j$|~Go$i^8Wz(!DZv`GG2tpqk9E2)i^IdhT9o!;BNtkf?m-hU zqM(#geIB$DWK!~x#HAda=wra(SHWotMqse`D&6$gO9FJ}9oFo8+_@jUn$4fYi_E-_ zs;W#AckwAc+f!~T#YkPBBD2m_E5%USyc6DG{1Qx)jE)z7Yv- z4^&}c5m^1*KRB75&MmnG>Z4EUFfrFUYvvN~Mo}ZV6Do$ZRr$(BD{~HTXZ(ly$SLxW z+QQU)`w)3(HT^AS!uf$Nfe9`AaQfSGOBY7b4z7T4gAto~)hI zvnbA$silLFdat5`;byt0vnWo|NXnS$=V$r7nY7A7NS%k$LP&j498C)&HH`+jne?>p zUZo~gDvoiyy)t~j*}}WxkDF8Dm~(|+nz(3xcW_crUs1ktj|vz;9x#v3b`)e{Ko&yG zC@G36hA!FZ4pAwfE_Kp=;jKvwfq|cLQ&}efzVvr_D zr>tT;I@uWQNU@igc4FXTF&lfI6^l>#GH|pM^vhg9MLW{&;3V`j>oaL&?r`b4Vq40d z+5^9^q-Zq-JAQ-Z{Aia9@F$#iA5s!A{{#bnjBAfGC#i%lN*XD)4AM63g6P+e05dK{ zv#OkZLd3GWojh?ybQj<8zG;e7NZ3Sh5rY-JrWJe<+Og^ZBYxc;=+`{*lU`n_-C)`|BY zOw5otl~N?7PW*-017mf!=@Vg22^@S23`#0v6O3IMhQ%AHoJy!cIgiePr!1C)u3|mgupbi~V}ziMp)|y(KRp)`(Mt zr?j1zt<5McMdE9^x@sCah8ii5y<<>IsACQ9^{Lt01EbJ2k4VqYhqtr*%{y>q{jSsA znbxp&iTWPv=E?3zcd8}RWoA2bh3nB(b%xZpDc$g(4V%Kj@a)_kt{xW;Ix}T@T@l>Q zpdQ8HdMdRwrE%V;?xled`5RIdd195Yub`NPRsQIRAU}oi`uvS_|9>4jsU;P z>@4Q`J@;~%@?He%!^n~QQpk_?$k9ehTxn)Od06f=IL;NxRR>vcuvaP#KnE*<1`yta?2lNbm=p51Ko?cj0?%RAlk@PxK{f1j zMCIbURf9=|yT^A9^>CDhC5N1UJ{Bbd-@AW4Ze0o>o+T0!nkH_jMxXySpP!`c^21tj zyK!nBV~IWwV`@^vF;Cnmj6V15+Mh8V+Hsd~KZmE?+S`ac_cxIIu29b+<<#*$LOA-o zrd5}ZGBAu~Q}Q=l0>$@%dHBl8(1>rrpq1DH!jQ3PeEE=2V#_+#0vV7Iu>_cYbho%j zSS6r?qN%uOjG_tnA(2F5!BNbVZ|aBeAG#F_KUIb4Kkn7l$VBb61*|gIbnou;CxUAj ziUceQn8aXBBG4;tdH4dQ;LNW^= zc^igi97YlcfFcXXb;-i_^2CZtN^u;;ilQ~w?8QQnN`>f%v6+X){2TNr=9Q96q`^^^ zqyJW9`KG>4l}Up$N?wTn&)eJ19!*k=Ey)-LD{4EHc0F4L-4qZi93(NJj+HrVHf=J@ z^qYCL8OIYkn}@11Sz^{lP(LS%4v#QGrlf)ZWS?ftDHeK(eXw;NZ&;emQ#{m&dzi$E zVk+cK(Z3QA-LtGF;Q%UDFr;@W?{`=9a!XABLIvYVC%-Z8fK%7gS-uqe%Lr1L9 zAsj(R%xNAgDlzE27mpQXFKnNtVv0PRK!Zc2^S&>Xrk0VVqM^)0)lE4yGAh^6$?7-W<#12#HWEO22w7gRv%K3 zkU-LyMU!w00|1w=3e9EqMtT*EV`g;hc<9Qkjq#oZ2J+~U@S8+v^wNx>&0mZvIZ?1L z3P-}D!@t?I_>BxcT=$)wbDIjb3=cN3u*Bh@>nJYOXVoRaqAMy|L~!U?W3UD#-XgFS zP@t3Bd1Fg;6fR$?E7I{@V|_x1iA{zQ1{UWt7OgRMCoIB$mV9BPZ{6?Goa16^c-ELJ zEiSrAn0J+Cv_6vyx#ut*dXSzs|9^}-!zH&E*r^JD5n%$`W6B=A${&JFn{DBd)TY!8 z`N&|d1H+wbHETq}DnW0=hn&JY0n!RD|63=0Q1{`OYvuEAowq3|_*CiozvjdU3~Vt7 zD&0r(?7$Q>xQGrZ{*RpVdZzb(9>6;3olpbKfXm|Nt|WM3F@TUo%K!pW3gsKx9k`sD zC2tQJgx=3Fo2^nynhZc$APy(x4})nDd=5j8>ewGOG`m8V$A#r#`LOVeTg4Tbym|}k ztvplBq&{(aS@Tyo<#zRdOA^8Yn4u;XJq0oY9(_kUh+D!g=NSZ2t%Q1hbwWH$VyW*1HS$8dh;&d-k4pf98KCN) zk)u^UdLm{@<5@4~h+gRV`&-o(*KavCXp*BY(kIrzKF~Nog9#=w7gh;OT{xgryeT)} z1a|@>2>|eu!eKx`xDJ>WSokNbNXyQM%xynIiF=nFUX7D;Z+qelZQ1LcUyVP)o2vE| z>R9lFTxW>m^GQ(SHLQ$+M&2ztMGRkvQy)dlEK#j9AX^;cYl__nTyz9w)e>HmeCHu>=s*&ydN zQAUInB>2HVXNpx}Qc0PHNAa%!A$3-A84Nru{AS`3c1{`A%wTnP>Qyo0t!i9BDq`mt zxn4F#OKL=|TJnVBYlhmu@-P6Q6-LYuF;WyW8wzIRa=*r>?TmPj+_%oizy+5Fiz-ks z-%E4p2qq59hY*ilctH6^i#Y^Fr%z z45CvfniK>Xl)bj800;LXM0E+`xdxbI?L8ut=rcT2ARukx!TAsHrVTjYSWFid-b1&S zC*AYzpUTN-=l-*@Ux#H`?vjz)+@;iC)Q`iRFG?boXc%I(j%gBP#GpZk{Pe$L&@+wv zu+D!A04r@kLJPAnr-VZb`eGHJK8jBN#U{(jFK{t*BQ`QAe;Rm@fpz16GNZ6*D#RWb z{9T-vGA7n(Cn)d07)4p`j2oJF8mlXhh&$6)OZNJv5DIzxrjQ*KCHKokF3X0u1tN81 zLgPkqneJVB$UK5El{!OIy9{q%<$=`r@djdc;p%7gE{E_-{Hl%i)c-NvJ(V^M{sH$1 zXT;}g*Pb7dNn2$=shmrE%hHKPJo!A)aLqD~W0aztRW7-~;vbQXABF5f8AqfJknE+Y z$FwL#yEziKl?}fP>#%h!MfH;ljs$x45jQP)Wu{1gw3&J^637WBMd=YDw}Vwsjj_5l zE4|w=04hn0d>>@M#QO#XFsewej>F_Qku~_l8TcWPRNP=`dW5I;I3LUV(d9|u3DK+u zr!`$svsP(hF>q-4Z2Kayj18|NCFOK7v~&S622slTOYt@RO`r}&ODS;$s8h71IfSGkEyo=#W5#z`n2eEugDh+~9EbILj^2Fv-do?0 zT>v|yZUL-pJpncdshF)mPTG>!DzJFdvbc3{o|KjGR8QN*vcd@8T#K>`%Z{M&(n|UP z6MfcVdzBxUGz6;>&dVA&@F-4ko>3Y!Fc=D?>il-Nz1=7IK*dhHI zer<`|e&x*0y%cP|FcT8epH})@FXf~}OhxVdd%)iXFNuv%@3&Y4{6|>+zLZB*@Jmug7KXk=ZfgX-pj)BeMH3U>A`H3E?HhsSjs6jfE!Nen11v4% zHtR?6jQ(+9IjSxo!xibL5f^I|CX^|achkoj?MLT_B{ToisG@r{r^!Eb9uy|4ykRn~ z9=^mxt1?Eg>@aJ`ZnM?MY>aZZS^kr9ljmznsQn|hcGEc`6!N#I8;4LdfBTV8R+E5 z-`%MljbV|dM{xBCuyU1A0fXA2wY(Mb-ZK;!j=GRnxGGdFwFAqDb|_GPK<3Q5pM=>0P8(Z_MO)OfLMMRm!Z+ zto93gGi^AGva|a#hP%dHwJgPd8st3OW>K}gcmd_svYo(P3)5?ijghQdcK?aH_VZ6f zD*?9YB*m8bFt?n$X5+;w{oc_{>YUGE#s4VD}(y{?B#KNM$mdycrg6o_6jYR~@aESq#tO9Id`1 zt^XA}#%Dk?T8+wQAo)w|&@&YnueI}T>5Cx+wIkJ6xx>|uGjtF>bF+LC&4zXv86ZHD z``a7Ji6@W^ch z<*9pAE`ru}y$vgfJoWpV_H{uMma(HJJz`17nCCK{UZ&(*8XKPL-0N8_U?3tRJZ?b}UL1G6cg#cqqKm%^Oo%|Pp9{o20; zj3Yn=YN{L;btm|iP^Q&!F&F|?_%v%wGTM(ySEvjAg{yw)KJR+_{Y%dO=&kg1@tWP7 zIE#0S!#mbC_n2qz3fiY;_sNtf%Z|=A^Vd1#G0ij#biv95racv=l)|?sJtbzvOFIj& zi@d_lUS9uB8e7j9shQk)WITI&(7Du-=})P8>OXsv;vx;%{JeRI6^%k#UQnDuefEYx zdrU7ac=py*P+XhoXn<#-b#L`-=Fr}i_0wrBsu#1CF^WP20!}Hec_bnvA4w%fC3n6k z_N(%91x5;`yfu#m7N!NfIVO&^_zScbuz_}0NI#c!(W*;{m# zq!ElAnoh-H$+c;y+Oa<*Ujw1xJp*vT0%;^7ME>)_$d06KzA6uo|1GuO;!3xm3Oi-u zC+a?~Ia}@aw;jLXleE|}ds3bO^5h`983zJG^LXVnn zY`%z|Dz<(9!!OhGqkCNRROcx*)iC_f^9X!jjIRFKs}8X_J@9lRA_utOQt+GrT#(N@ zn6o|Z?ihkDJBnpX_AZR_i_t184UV|X*dQ89r5B3~N6U7S?m-YIAGoI{ zj+wBr`9ye>l>6&mn+XQR;0V!lAlC@&DFK`u8!#tn=xZPW?j!V?bsXLbAw1k03~%Lp zz9T$Lns)EYN1!~ufV1YnFeltJU_=Ms_7Q1@tzaEoV0A~wS^U$u6s~a}s>7zal8TT2 zX`~~h({rUkJ5g*gEjjwxwcAE-zSmIcaH&Qncf7{3AH^nuDohp38dC$6gEhf~Bc}L3 zkrrg**HMG7mhu)=*eI5uckFCbqrKRB>APjcFQCL}Dyr5SRF;KaKVIr8N7c{ihzbuz zyP2iJ;TOx7i_a}yBs03GYb3t-Hg1-z*7M!Q<60o_pNLX#k6Tnk-`G= zDsT{Cl1B#iHK|Lah%t8jpse$k)Z1W=C5i6HnyhBp9jB~g+U0MV3VUy@F}0?gTN8V5 zoZP6KKRTIVE+t6naZN2qp=%Gh=}#A@Mnp>r5>W_XJ8gXEpU|!AS#-AQ$K4f$ zMb+PT-A19ufg{gxp<)sP{RsZ)96O4IE;=DeJ`!aD7laI_VvWlBPLpQbvXV3PJRlOO zQx!n?D$KP-xnR?%GF$a@CKkAFZcN^n(NRbpt>wD=m>IdIRgEdicsZ0(9O|SEFsFy; z$&Wbk8u8Dwh96ihaV8PP--? z*}+B3T3iP>z_v1JUy~oTkL@w3JY!T4-lD6Aqkyf+?-`guYKEE>YHR%8G5{ioRAv>{4zVizZ{Bv6q9HSnXD zQ%NEBuQtaLb|!%VNdKEEeFzBd#wiz5HXZzxle+cRN?)B@Np++WLXeg{=qx}4=XZi# zggw3kbBCORpVib$e}Ps&dTY6pcnpO|6 z5hdD2>R$#&;+yH@|Ew1->{9z~<0lsEwV;~+(@q_mvJ`?OJr_EHE_NB1R4GV)J!G7! zK#(Wx)?56oYsLSun7`V->6EtG{(%-}C$4gN=+DIubyM}lVHicp^3e8=0)2v!XC^;U zWTct40cr$fhTFtu73LM2`KP&mQrQ3hjOr%0)^0%WWloJWR$pRh%_x&8u1d_;k4?Xe z6Izp#vqNii#`ujWZ1mD_CdC$kcuh&}3rO($&e>v`-#94F+`!YLKa8=;e~!~nTQBx# zHbZthwFD(b4W*A()-2~g(1|99Qq`smt&&2sQe(dAWg)6&f)EE1J$-2%lQl7ocGlWw|dtbBO^eXKaKk(|W< zb-g4fD{fe4C>sZq{b=qZ73`v=D1oUU?{aogVjo3Vr5XjfF^XiFETBS>V$SI=us)F@ zgg-K8`s?XiSS1f1-o_d0J?$-Hc%{XK)}lX2)@?3uA)Z%7D9ev)1~>hIO{Iq@(WSr} zU7gInz*{%XsIJ5HIPkP+BO^i2u5uSEAaLi8`Z<%zMt#u?%h7e?RC>PB=cozd^6xWF zrvXUeoT&+b<5YzC1j~78e_(9F;5=3x{nIVzlm%I=lvu3fnQV+P1irP8Z3cjr27^ru zWb*!kKxx`w6hLa zy2NQ@S9}XYQ-E$w9_tDP*%l(FG1_Ag;6$0LprYZJWr`+>Hd4_4#ng{_R-=`)fyl&j zsSW@YO&PJj0#(we3Mja=<#A%r!WE(j%^)pwp>GElU;Z7woxCiGJbPT;$BSIzkf2t^ z#03^oNrEr4Nd5x^Z=<&CLOs6~X{Cvr8~Q@q5?~8aql6Jmz$OvUa3=R<6w_;pd@a_T znNMMdCalvtMsQ68I4|%~x8B`?#wwvf`XBYfzWC)E-1AsCU(U*klqc*k;RCS?-VinksC_voL8kN zk4r*f7l;K2kNT#vw#O61Oy$zCA%uv+b+pN zGHuVm+}XY`PN*a~n65?TAYyy@(~osp7uW8yf&D31bMNrOjH6%s0dRoGr9j~KD$PXG zU?-9xXt9wMgpBBzgR>oF>e@13Jh}Wj5QvAaO)c?FilFiby-J8E(Uf~>#$OH-7javA z2FJ4YoBa|9kY0In68o4r7ctxwdLsDu3ij*oy%KJNC-rjrl1%2n!4UdMoL}p2nb_WU z**}Zp-vUX>?~Vs&re%e~vgS=htd;%Uc`!Qf_Wu&oZ<*Opg%^snK?Eh*#LO$2}A$w*7`k`5Y+PNYbvEL@aB|%(YJui z=`B4G{4zUm)!@_Dz&NRDGgQq~cdM)Lb&RaijSIwFg}|FVz$RZZtm+t7i~D&?$*<$@;&V7F)Xt`gEM4Uxz@*s|6mEHz?FK6D;7LHl^_0m(@>+3;r;{ zf-z{&a^Sb|uc6)~C)<2*?7Sg8cOM}xV-fgfCy(18)##XrKni2B@%Lb`eu;>MOv|M8 z1hspR4U8SX$NVI4FA{$K8H~xsq8%`nfS*o)1q=?E)Uj)p^EHw2t%`m+sSy5DMu2;v zBHBPVMu>sm469OylQ7!~gTPJ;LKOu2_f;hDbzNMkP^c==C#lZDi8)L5_NcPLPii~V7@obp%j0&02DuYgQ zZh7u%mcqZ^p`Xyg5C9s|HSgqb#_a9IopzAgU5C|F}N}U=L;M$av#2IXbq`hWUc+;5al4D$$}uWh~=!>AJz6< zGP9b2&9n!Xfm#gBVBwx82YMR$pBeuFORrL^g^|3d%{@98ZA(g9d$33j!$sZS`Vii`;`f#O3*aqN@`VG({Zn~f2Ek%MNC z-(IlsZ*cICpUw)Z=O6B%x(9(pf-q+h$Qk757=$=fs2ucR2q?7SK$LNIdP;iXkGF5e z!>45C+ARvm6~P{YCwVgGAKW%e`9}$jB62kK2;+t*27|N+K8goR_M0m0urX<$i=)KP zhtGL_vAFG--fB$GQDOLG#AYzOGk$i3#z#0N)lWY!UR|C{5OtSZ5Mpw zL7l#9i9zrD9OpmhfzuuTOz}l&3s8Bei;SqQ0;|G|rh>ph-g1}&8mhqPQrw#DvEB3D zGFI=;rMt4k`tZvGHhva=FsBa)si}$nP`yu$&R8NwtWF3^Vy9PukNdMKr_aO>Hhx;g z+eijOXpU)vi!-rf$$+9i!%DC65q3e-#e&D6NQQ8HtTKJEuN9GG1RV}}wmmou=eLoyIV!arcl-088{>zP>tT$6n-I&u_pfgLk#+|32 zpV~W08ZWz7ei}dyTNL=1<^=v%1;}Y|6wGe=+|*xsoXnF>%6I~hK!*$ zZ}O!hzwKl1LQ#HNlq6r~-Q4_w2yJv8OMQEq@O-h?+ZPc#X1Wh?K7{A@8c%24y*vI3 z%4!x=3M$ItceVygy$`KpWpn9~n#d*q~l-X6btLX7NhKR0(|9LDM_)4=EQyQX(>2rx%&W8-7c3*j#fg zwyxD$QS7^Me~>IBF!bLO;o=kRu&2r;L9!#3(gsk-b~9n~CSd83<6cZ%;2yzxCSOOtl=pPQ9lhlF=RA>%7qj?>+yC#c=#?%_W2w zBFKhM2n8KN#Vnwl41wfFy0SsUE~alTDrOpB%~l1B{JVd}#;S&wAM|Ik{yoMg|64xS z-Zn5<3jA<+{_jELG|gvMfpdoJ`q;#?qPPAIL*$M`;E$=%@3OB!iid~dK6@nG86I6; z*@sL*1ygGa&68d2e!n-{!ibAty+$xq_*KBIW?+PIsGE{FGoO2qTX;^5JA7vnD$qGe z#vxZ7D&G%tA2xJUK-||a5Wg2Bl}n7XziD$D?C_%lMVM!A^NFn6PXvFGD>FAdqEpok zobe@>K6i*nb;?*E(?j4O_ljPL{D!{$>vk?-%fwWWZU>;M5` zk*0oUM<}!wS%kMwNfV_rW+``9191?3*h!ec641H`#6?0tvHIL?CTz4sQg7V-sXK0& z^(rb+9?q?g4ey$<01&nPh~iw`z_I$t>B^J&`g-R+5aaJn^W3H1%S@+dV7$M5uj8ia z6Q4v5-d^yam#roH^yW>RQyfVliW)Rj@ivm7z_COQOsO)2CiV?6C;lMLQF!E@)p5G} zI!YE^u*`}q0ly&l7dUdi2cLxU0x|TqUF7ZN?|pU}m@IkL1-S8VW6dxOt{VaS4knOi zFk1kL%Z}F;!Poxu#{}#uusFQocx9RoWq{7O!r;e*D!P zqqS$P)nH8?`@QmJbLsK8vGQzX#U%Ks`9vo_o$zw~*q8g%CgpBv{yz7tvETK`+m@wt z+E9t*G%s6#p?|L2*$;x7kktOOA_G6>bFHHZ+5AC= z1*3cu#|5KHpwohNuk!1m=EKvnbnZ zx6D^9ZB=lc-s64s8#XB@@grPMZHucTxPH;jUK%+(RmU$8Hm}R>18${L4{IPpGd=Hr z&r<=t{@s3o_S|*M1Wfi3cHNCZL`WIy@*&pYKj0Y2A;&$V7}hdV)Oqikak=;n9y#_*!aHtwO#m)_n>-l6k< zi_+au2Z{HBRA;=>^TQ=o(`Tu$RF@2Q-^;J|Y>xb|8YB0J_2#Ohy@eTWSDgM?j5_!~ z&G!1)#k=SYkEV~R|1)81bIRE}amg)sBhtW#^lM`+Ny_Z;8dHC6X}kR6)mvy)W7U4D zXC<*2$)+!u)c&{d<;w8dq?+>2rzd_Im1IzThB!Js4=g^7zV9#^8Z2YfVm@zF5xu4U z2KqoePpmNekMBq>(pvB9?$p9Cy$~!kFE8JNvu9Yu{B|wANi#o3q1QL5{b|2jxIS9a z??nf8&6hV-`n#@R3E1CyeM_+VK7Zph!$D(fn+@|?E!|hGzhHrmESc27JGH#{op0S)|Gkl$3KJ)2mq-+44O%Qd-s$NjTxXaaJv2RMd z;^qE^gA9+FXcTA`cDuk<&W|#1L}*XUk#xQY3cNN=Uf!p9m6<-G1*H&#xxPr8r4NdFsWU*!PyXd)?Em z^xJ_=;oJw3&fDv_bl39IFuaAnL-b}ZA-?Rt7H=nu^T=3<7$C%i z@iUNA5nAY5u&e=TN6eXGi^shVA;k&%DX-F1WQ10b?pCs;|73d4`bHPC9jobgrnrUf z$BT`Fr~O&yLuKL2Gs({i({+dU=@fpqFV)bFw0=-ufg1Fe<+fZQ+V+r5@tzv?nDC<> z_v7ipROg#>2o3e5OJ7N>VO&sDT5v%kUz+F;+8yFvr>2aU z={YXD23El=-O5O+4u*`HQYO#ey9X1;^PWV|LNOSWSdS#+qXu76R(&a-H-L*!F+;Ic zw&nlMQTzCEJcIZtkU~sSIv-B12r;7L6kbv2YCmGE1WtOjWU@E!q=izofG-^^8&;A& z=5)lKiJq!3hHQx{2BV7kBc%ACLyk0(=7@=$B&1+QylmyQCPV3O>#CLZlk!UBc*!aT z1m2ihU3YY$zoCP_!?I3xGO%D7s~D6RVFn>d$ABl$5C$RTXt3&j#>^NoMh$UWMvg;E zWevEG6oT{W!> z5W?uHl|Jn?N@bKf%nYrvH&Tznd1KpImx{SIq##OlJ=#_@iVj$+$)rZQRSZRWkd2;| zLOms6+}2?$+2C^cZGzI(!>jqLV}jt$Am!vACymAAybghwTwvnW-+sbJ4%&v&1p zQ$YPSL`0q-Q;vxv6&xGcLCz-W*|OiV-E$RbDvV~f_4(Fn)b~ck=qv#?u%x_Ryc-i$ zmOSQbKm0gF^2~Vogtxnwfd$wMd_k;2h$S831_ccR%n~68(H&U)ML8jGM4K1|%g7V6 ze!$4Wv5?g#;d~W1;}0dF)WhpoMuKeQmP2r&DOKP+j&GN)5Ho%={)-%?UktGldN3s7 z6jMM9PFzBef*F>P%9+{brT_~s-y}ILBQ9kdCKh`Z^Z1@C^?L?b2#2{s*qqCNEI$fx z5Gp>AbW5x##e#XouM;f;kMonG@1!ZCyt!PVOrgw=*K;?|8Q1YHE$07-(86FV$ zV=GA|0Fk|rK~;SCv&RCW5tt#qOi_g9>_SwT4d~jea)3B{i0|{XbZ=^z6L~{h2v|O! zO0ejam9L&XgFWK`pn!@+fM(h;OPSLD-*$(JiTO)cDgu$!lE?v0={j2mfYB+ZjRm)B zA?P%2G;Xx|W;b1&%plUl5RpCxka zjF+}S0<1a?1`RO8SPq3v8+l8yz7@8Tr)k55;324FxvL=$^ih}PfZ*t zya%oa%S2F9l;A1BIq2*xNSiQ`rExXRfxl$v?dJ1)ej;yUr%+Mo!dQPmCLu+bC!=nQ zXNua)S`tQ!iIB#j?@QFsMJR3E4=|SyqANl@6xBruq;ZmhAXEHg1oxqt%*&mpy37Pt zIBTYmu@|xzJ_M=s!;zE}f!PO&UrLG#4~q)T6G{;%-&x53^M6)np3hWpL5&c6ndG$c zgrsAB6H#A4PwP8%_HPo(Zv+;t$1GNY36UTMOkx|M#&Kv+IY_op6{fC)kB9I(iXofr zDkQv9P&)iB`ac*U26D#{+&PF9J~xHOj2VI))*zO7ZkSBu`;HHxIiO`(D15Ax*!Xq5 zQ40-PDGO3)1olkxgolA|)lsHOriza!y$siq9B)Ao7S!4b%ANrz)Kx*sOpOniGe;ah zn0}Kr31QD>&vwr@j!&l|(8?Yy6E#;;GD^Y5=lZHPfwig8Lw}S!x|r*h3dKFqMSk2Y zCad>9sf4|Hq1?P!JJdR1Aw=D8&7h%@IBO#Av3;$XSb16)cHIf+Wh&EPtczKlKL7k- zFIQ8y9wYg`N;($ip)ZcAlXU;8HcS)I0fygUE3jcT;}6QN4^Hnty;leSlzJI`fq^tR z6yUdlL4>eoaiX*CO~ZwL?jJXPFKYcwHFFYhp+^1_^ygKfagie+m&ej;^3U!|J=0L=k;I#FN=mFG z@2#@-hrcynCTIkjT3_F&LOk-|+U!?94J{p#H>hyUQrzPmj^M*1 zzJ0b#caA}9Pnp2x?oQ3gHTq>oqcv)tx>YOkEg82*wm{rq)}x{5lO>k~0`TL~|El9E zfZ}SFH68*y6S4Q(OpoHIt#p9pzgk>wGUB{_+}9S#xbSSLV{S8yJCxNuo6 z?-GG?Q923XY#Y>!u=_A;#AvLS%nlL94trjIPBl_ zR=`0|46%a(U-ysWLwW5+Q%{rn8Q3wypJT>|;HvarEM{0G5`M`0ARzz5Q-XHUWm1C- zvN|ua=(C^wJz?yo7Swp}CGxhIjOV5`Zq`2 zjE~MyKR>Lf{@}+js)+uBs!@>gpwFqL#AlU`$M2@mMe z)jW=A9=v_-)fL-l_L_+PC1&0`U2_Kt+PE~)%w54b*C+i^iJa${15LxLRU1z;X*hl8 zKZB0Nt2Rn^r`nAsvh{MufSV#0VulbfS5VsF5 zc~8C46@*l@&$hpC9bU^l;U=cZ`MxU89Ygy2)QF50=5RYz`K5uBztfm4zvJt%jl@tN z;Xxdppb~BwKF-dH(etJRrjfLyaYRPpbaca4sg!CfsdWl#Mbn%Yu*+C=--P`?z@2#Z z;|<&p3c|Ko84;Q^&(aLcU!)YBtWUz_M|&{n*qWtD4J{30n)T9`* z5itg`Y!)oz^tf(Cihg;H23%yKRJlG8Pctb#w|V)IL1u(WwVwz(5L9Oc5imXxs&_j* zYcF}2;L%in52Fym&I>?Spx)6e+`)##OgB}KP1qB7tDkqb5%l<+6hKa5HCg;JWiIWC z#dPN%ni)Atmz@42fzO8z6c|Sx^JMO^x?9YK{A65k8H~3oD zOj|Wkdvrm{Zj-ZqJpteVd(gIxU=(Dm%U?M`qSdJ;&1shQck+7 zt$ri_81hNGt6aHD8#7_>gB@nO39Zzhd+@%ecJ8v?m%wp+q}PREnttuKiFJ#Ww}S(+ z%V&3mg_rr7Aj_^(H)4W$TrV53pTlj z-`iabUhLPftV1gqvMluvrrJ~fgo$ArbT4+7cy!eP8Z5SZI3?A`a<}VGH#$NK-g~a8 zq$zrOK)GW1pKY%~+$3*Cef^=}_E`h3KOGxpAFT?SDGT-;zGJb!A#ht^=SuoXTukfr zM@5JKvM%S!tr`G!?lkJ~54w0g2xf`?wcu9>hQs_5mcr62e(;%b$AYg0AZd;ecZI4# z^8f+O{F7!6_ozgtgfCW^;e8D#M<5X?V_@e&iA9H{Yk7vwpQLM{-NT_GAB?3og!rD@S? zXJ`Erqm_CGM;AWg?O&>JX>f`F{q4^XO1(N0h9ia1c`c+#x&_xzeVbS8QBlrg8(S@m zP1iRhv>kT?=&cL->t=Ot;dTIx!XtMpS*G(|ZD!pzQ&e)+4brNY#3QuSrjnc^3-8d? z%jw-cCqW;ejU=F`%}#?ALb>jtmH>{=2O1LhgBlbk+5epE{cwV$a)5aF>w25`#}T%N(1w!r+d`08GVm1^sB^rZnl z<0D??L_V2W4<6C7{l2Ofs0vzlQX?(jtFUaH@Rux<^yF1%{@hlG-NB@87wR50 z=7*r*xx0-9$sZJdp6!q9WiCNCw+9+b`sGXA#nx(uEV8+d*Sl}TZQR4UZJ(nAMU6Xi zp`vU%hUxxg;!eg)EGan+ZFP;mV2H(#j?cN4$j$baOF#`0fqJ0zZxSJv0#RiWOy+4J{;INHaSc?JeY+c{Z2T`fAxL+2y?6*SY6{nOJ~`Awha%cIQ=VnbyIEG z+kLsh^z*UUMTKmXi+X~7Oxdv<(yL^rgg5zO^hQ}76j-DZN$QHe>x4Wvxxi^DrTWhzQ zuEB^y{^h`Rj+*i1p_OqjU!Q=(X78;*p#)m5trN6Atn^C=o1C)6}Buuzfl&|j*a zibFNem)k@5G%gT^Qb(Tb$U4Ftl%J0eVtIOcdOu82QLzR^Lqk(qh&)yg-K_XFln&mU_8LUC>dZ9 zsmkeKuPl@2L{TqK zRq z1;@*Hxx}baNSrnMql05t*Lk#$Ic;TUhlHdm7yg(671%2L##K}N>@QvvX4Sr{N!JImq6tPht*wi z(ITfjQ9Ga1yUathEB3GiRb8H^1&E>%!8vA8LQZvc^h`7}-+8&(*Y$zVY`&Aom4DOl zNf`eVg=Z~e?ZRPKh22HX3fN6ArnY=U8S^B)lWzgOv|CUqLw%xet*;HCv=ViL`WuBS zeK0oL+}}x8Hm!H&u9b7`#K>hJ%>DUcl8?krS4WN4!QN?B^3JKK9#5Pv&8}CQerE?0 ztTQ-NWMlz?!u{HnGMrgR#|O7*id@p=7U=Yw>^i6plpBQm8Ci&kwd&?Z{9(N|r-`Rc zcaD>f1#LwIVv_jhOOpwh6GcxWQkSJi$VN1Hgs3#E z`6_Z`TWIP}2y$0Ix&3YhrEEXOx3_2dCJadex-n&=%TS_5B_{jpot`qy|x$$1Ql@Xlrw+ zZ;vIf7Fn3YwwJH=Q{kozi*y1o&%A|9pA)4W{&H^dt0m)P3dC&2c9`B#v)w`?X_o+_ z%!2=j`s@jrQ>-NCO1(Ux5CcUu+B-Q8LM%J3wsctnSBqE;bmIV&JxOwtqA3~cF4!~a z<5;o2nclW;p|+}&32z|EElkXdT&5qLU=HO#p$MnXyv)zUITUt1Rd)Hj&FWWd+uGJKC?`Py;<{^>PB3iAMv}kUVw7#?d)x(lZlN9 zT<3R6m_Oq|NERaI@aqL>|322K`YL-;b?=zsT2*E8}QY)TtHQ zh!iGc=+Q^J$dNM;RZmg)4cE2Kk8bvF2=)|T1degAxN;f0b=hw8)n`#PzV?tcYPBSD zqqK#;w^oSvgp9Bv543KIDW9>5@Qf8}_r*6#omZv^l?~z=ELo!3uWTiKf=Az6T|#;r z48Ac%2@QYG947pu;qF^E>D`pQiwyKj=_F+l3pUj>i-Wkm5`*(L<5Bs|>*CRC@@4#JmhC}5~k`Fxa zRHB++628&`nF1%qpM6gX7mOU+GOOqGjGKUPhVb^;D_SOc^4bPv@lj(dq%`$o;SN)q zf9u^O+n*mxx34mJT>ywLpO;Mn3MJ{8)PA>S(``OSogcH@&z_^uJ4 zjbJwl-TG#seikE8?D%OnR&lg3ui4g3k{?)OYxZ``^|Ht|p4i(oY^^wIrKP2vJ!hsM zZ=fnI!}0h#!F=UlQ#=Mk?2*Z96BbpURHY{X$@iOHp9pJRP7en@`d_bUWfogj9}+42 zt^ugNM>3U3jfVQNQe>CZUMebZAFfWXIt7{S(Gd?pxe?kt{&r9q;LR7pT2Zv)6W+WJ zyHzAb_F7JQi@NgT93gH-9$^lcN7%4q>6z-y8b1DV^C&&B(XRrh;bu~}av7FM&x1Y@ z`RrCOmqWS%WMAN38SMQmvx%f)T@s%$unU?K9z9azO-7|6FrFR3LmUDUnd936SmSpW!8EdR)Gl{aBKP-d<AfB zZ{&Q8oQ>r3=Z_`ad?iVwp3ssk>o)-kNJwJ7XY+5oEU)tEH*$Lvto`HVgGWvFlo5Zj z8zMv=i}*P2JbiU5SFFzZMy=k~%Do!aLBypvXYcSz#l7^0e?tsdi?5zh{$WzRnpp!t zq@+S?oi-{Ap{RT7ko6Qx~>2l^b@^2-Bs~pmY&~bbSKxw4Lr| z>I3JO`bxO{naK9x1I{vhTo~5`+xv?1oTa}ZWJfn@sBvT|j)<23NGd4wk9C)j*e;Lv zIlbc1q<6!j9(hiFyf4;BBJ`g7$L%p%7u@c?>4n*E#ncG6N`UNTJrQHqzXjuG$-l{u z?ahJZ_}$zq`OrrRvD1vP&g{vB=0K*8kB2kAy{9lW2R{Pg5vtZ3;rKlxBe>eE#A(QaWdUx1}|BZ*!)rpMeWq1W1LhDbbH+$&mjfaIr<_?LHttrp;G@2j=z z%I$^Eo9#7U4cHgN#SLmhyI;dH-&4s}v)ncIQ#RTl>9jop^tj1L(bHu(Fxunynqo_v zN&{T+1>Gf-LL25FqrqzMLT*rj9!H8%z218WrguqIpN+QtF~ikX+hO4FIYUb7gZ_tL z(M=WmoqYZ2B%Lfzm99hhu=s~=clEFivN`?Lz`wERDF*Gu-bxN0)!)A}4qios4- zCoq-q{(w?O(Gyd83zBcbgukFAO!;=|eNf`4t*;Qkc?Ou5s;(@7nJ}ZN+(xP;u^LMtU&bOwn zz?KomMw6x`eQ>23X5{u{iTWu?@U9YD_#+XD$vBe_K`?@*`FNQIiUS^crI;WE8{bMT zl_?REvp3v}YdndLf_f@0&xYzuh>CjXuM8n4(Za);RK;{IB;>8Ln-RoNabdy?e$n>_ z>}d(TW)=%eoIk`zidRfR&k#62k~x}e?9|Gv6D=GQ4n`Z<_84V;O(0(f{_2Zs94hYB z&q7GfgsvV;yFdW6arIJ((b5lVDP5<6;Z6ZRKLF3yr15EKUnHR#=MgAeEmce`42=Ju zyBG~9{KxfwnT-Ea`oDn||A@+?`H=rY82>5p-_VPHB;3&w|AA#_sp8`OeTj{}%h7$C z5e9}JhI)Xmwi=zGhnK63y}PXwow|pey&Ijim#vfYTYEZQE*=8V-zS{jwodjSYj06H KP=K8c!T$i|nU^L2 diff --git a/artifacts/sports_org_erd_v5.mwb.bak b/artifacts/sports_org_erd_v5.mwb.bak deleted file mode 100644 index f67cb3bf9d4cdf07f3b4cc01fd463aad017f5d9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22947 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 A*#H0l diff --git a/generating_script b/generating_script deleted file mode 100644 index 1869346..0000000 --- a/generating_script +++ /dev/null @@ -1,33 +0,0 @@ -rails generate scaffold Person first_name:string last_name:string addr_route:string addr_city:string addr_state:string addr_zip:integer username:string pass_hash:string pass_salt:string bio:text birth_date:date gender:string height_in_inches:integer weight_in_pounds:integer shoe_size:string - -rails generate scaffold Phone_Number phone:string person:references - -rails generate scaffold Email email:string person:references - -rails generate scaffold Team_people person_id:references team_id:references - -rails generate scaffold Player player_coach_id:references player_jersey_id:integer team_join_date:date team_left_date:date - -rails generate scaffold Coach person_id:references coach_type:string coach_year_began:date coach_year_ended:date coach_id:integer - -rails generate scaffold Player_statistics player_id:references statistic_type:string statistic_value:string date_recorded:date stat_id:integer - - -rails generate scaffold Team team_id:integer organization_id:integer team_name:string competitive:boolean age_group:string - -rails generate scaffold Organization_teams organization_id:references team_id:references - -rails generate scaffold Organization organization_id:integer name:string - -rails generate scaffold Event event_id:integer event_type:references event_datetime:date team_id:references created_by:integer open_to_public:boolean - -rails generate scaffold Event_type event_type_id:integer type_description:string - -rails generate scaffold Event_property_map event_id:references key:string value:string - -rails generate scaffold Parent_children parent_id:references child_id:references - -rails generate scaffold Certification person_id:references certification_name:string expiration_date:date note:text - - -