├── .gitattributes ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── SECURITY.md ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ ├── actiontext.css │ │ └── application.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── admin_controller.rb │ ├── after_signup_controller.rb │ ├── application_controller.rb │ ├── categories_controller.rb │ ├── checkouts_controller.rb │ ├── comments_controller.rb │ ├── concerns │ │ └── .keep │ ├── drag_controller.rb │ ├── members_controller.rb │ ├── pages_controller.rb │ ├── posts_controller.rb │ ├── projects_controller.rb │ ├── search_controller.rb │ ├── turbo_devise_controller.rb │ ├── users │ │ ├── confirmations_controller.rb │ │ ├── omniauth_callbacks_controller.rb │ │ ├── passwords_controller.rb │ │ ├── registrations_controller.rb │ │ ├── sessions_controller.rb │ │ └── unlocks_controller.rb │ └── users_controller.rb ├── helpers │ ├── admin_helper.rb │ ├── application_helper.rb │ ├── categories_helper.rb │ ├── checkouts_helper.rb │ ├── comments_helper.rb │ ├── drag_helper.rb │ ├── members_helper.rb │ ├── pages_helper.rb │ ├── posts_helper.rb │ ├── projects_helper.rb │ ├── search_helper.rb │ └── users_helper.rb ├── javascript │ ├── application.js │ ├── classes │ │ └── RichText.js │ ├── controllers │ │ ├── application.js │ │ ├── comments_controller.js │ │ ├── drag_controller.js │ │ ├── dropzone_controller.js │ │ ├── emoji_picker_controller.js │ │ ├── hello_controller.js │ │ └── index.js │ └── helpers │ │ └── dropzone.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── address.rb │ ├── ahoy │ │ ├── event.rb │ │ └── visit.rb │ ├── application_record.rb │ ├── category.rb │ ├── comment.rb │ ├── concerns │ │ ├── .keep │ │ └── subscription_concern.rb │ ├── notification.rb │ ├── post.rb │ ├── project.rb │ └── user.rb ├── notifications │ └── comment_notification.rb └── views │ ├── active_storage │ └── blobs │ │ └── _blob.html.erb │ ├── admin │ ├── _link.html.erb │ ├── _nav_links.html.erb │ ├── _total_daily_views.html.erb │ ├── comments.html.erb │ ├── index.html.erb │ ├── posts.html.erb │ ├── show_post.html.erb │ └── users.html.erb │ ├── after_signup │ ├── _links.html.erb │ ├── find_users.html.erb │ ├── set_address.html.erb │ └── set_name.html.erb │ ├── categories │ ├── _category.html.erb │ ├── _category.json.jbuilder │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── checkouts │ ├── show.html.erb │ └── success.html.erb │ ├── comments │ ├── _comment.html.erb │ └── _form.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── email_changed.html.erb │ │ ├── password_change.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ ├── _error_messages.html.erb │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── layouts │ ├── _alerts.html.erb │ ├── _categories.html.erb │ ├── _navbar.html.erb │ ├── _notification.html.erb │ ├── _notifications.html.erb │ ├── action_text │ │ └── contents │ │ │ └── _content.html.erb │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── members │ └── dashboard.html.erb │ ├── pages │ ├── about.html.erb │ └── home.html.erb │ ├── posts │ ├── _form.html.erb │ ├── _image_form.html.erb │ ├── _post.html.erb │ ├── _post.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── projects │ ├── _draggable.html.erb │ ├── _form.html.erb │ ├── _project.html.erb │ ├── _project.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── search │ ├── _form.html.erb │ └── index.html.erb │ ├── user │ └── _session_manager.html.erb │ └── users │ └── profile.html.erb ├── bin ├── bundle ├── importmap ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── importmap.rb ├── initializers │ ├── ahoy.rb │ ├── assets.rb │ ├── content_security_policy.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── friendly_id.rb │ ├── inflections.rb │ └── permissions_policy.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── routes.rb ├── schedule.rb └── storage.yml ├── db ├── migrate │ ├── 20220131064930_create_posts.rb │ ├── 20220209082551_add_views_to_posts.rb │ ├── 20220209083507_devise_create_users.rb │ ├── 20220209085715_add_user_to_posts.rb │ ├── 20220209090418_add_name_to_user.rb │ ├── 20220209091520_add_views_to_user.rb │ ├── 20220209091605_change_views_for_users.rb │ ├── 20220216073155_create_comments.rb │ ├── 20220216073214_create_active_storage_tables.active_storage.rb │ ├── 20220216073215_create_action_text_tables.action_text.rb │ ├── 20220302075632_create_notifications.rb │ ├── 20220316052648_add_role_to_user.rb │ ├── 20220316052704_remove_body_from_post.rb │ ├── 20220323053602_add_slug_to_posts.rb │ ├── 20220323053611_create_friendly_id_slugs.rb │ ├── 20220330053457_add_comment_counter_cache_to_posts.rb │ ├── 20220330053548_populate_post_comments_count.rb │ ├── 20220405234838_change_json_column_in_notifications.rb │ ├── 20220413060450_add_names_to_user.rb │ ├── 20220413060517_create_addresses.rb │ ├── 20220413060531_add_address_to_user.rb │ ├── 20220413060545_remove_name_from_user.rb │ ├── 20220427062239_create_categories.rb │ ├── 20220427062305_add_category_to_posts.rb │ ├── 20220511071651_create_pay_tables.pay.rb │ ├── 20220511072519_add_billing_location_to_user.rb │ ├── 20220518082713_add_customer_info_to_user.rb │ ├── 20220608093644_create_projects.rb │ ├── 20220629063516_create_ahoy_visits_and_events.rb │ └── 20220706092028_add_position_to_projects.rb ├── schema.rb ├── seeds.rb └── seeds │ ├── development.rb │ ├── production.rb │ └── test.rb ├── episode_12.txt ├── example.txt ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── rails_blog ├── rails_blog_sysv ├── scripts └── stripe.sh ├── storage └── .keep ├── test.txt ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ ├── .keep │ ├── admin_controller_test.rb │ ├── categories_controller_test.rb │ ├── checkouts_controller_test.rb │ ├── comments_controller_test.rb │ ├── drag_controller_test.rb │ ├── members_controller_test.rb │ ├── pages_controller_test.rb │ ├── posts_controller_test.rb │ ├── projects_controller_test.rb │ ├── search_controller_test.rb │ └── users_controller_test.rb ├── fixtures │ ├── action_text │ │ └── rich_texts.yml │ ├── addresses.yml │ ├── categories.yml │ ├── comments.yml │ ├── files │ │ └── .keep │ ├── notifications.yml │ ├── posts.yml │ ├── projects.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── address_test.rb │ ├── category_test.rb │ ├── comment_test.rb │ ├── notification_test.rb │ ├── post_test.rb │ ├── project_test.rb │ └── user_test.rb ├── system │ ├── .keep │ ├── categories_test.rb │ ├── posts_test.rb │ └── projects_test.rb └── test_helper.rb ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep └── vendor ├── .keep └── javascript └── .keep /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.0.3 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/actiontext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/assets/stylesheets/actiontext.css -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/after_signup_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/after_signup_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/checkouts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/checkouts_controller.rb -------------------------------------------------------------------------------- /app/controllers/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/drag_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/drag_controller.rb -------------------------------------------------------------------------------- /app/controllers/members_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/members_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/turbo_devise_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/turbo_devise_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/confirmations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/users/confirmations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/users/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/users/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/users/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/users/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/unlocks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/users/unlocks_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- 1 | module AdminHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/categories_helper.rb: -------------------------------------------------------------------------------- 1 | module CategoriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/checkouts_helper.rb: -------------------------------------------------------------------------------- 1 | module CheckoutsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/comments_helper.rb: -------------------------------------------------------------------------------- 1 | module CommentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/drag_helper.rb: -------------------------------------------------------------------------------- 1 | module DragHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/members_helper.rb: -------------------------------------------------------------------------------- 1 | module MembersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/projects_helper.rb: -------------------------------------------------------------------------------- 1 | module ProjectsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/search_helper.rb: -------------------------------------------------------------------------------- 1 | module SearchHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/classes/RichText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/classes/RichText.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/comments_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/controllers/comments_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/drag_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/controllers/drag_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/dropzone_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/controllers/dropzone_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/emoji_picker_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/controllers/emoji_picker_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/helpers/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/javascript/helpers/dropzone.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/address.rb -------------------------------------------------------------------------------- /app/models/ahoy/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/ahoy/event.rb -------------------------------------------------------------------------------- /app/models/ahoy/visit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/ahoy/visit.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/subscription_concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/concerns/subscription_concern.rb -------------------------------------------------------------------------------- /app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/notification.rb -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/notifications/comment_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/notifications/comment_notification.rb -------------------------------------------------------------------------------- /app/views/active_storage/blobs/_blob.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/active_storage/blobs/_blob.html.erb -------------------------------------------------------------------------------- /app/views/admin/_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/admin/_link.html.erb -------------------------------------------------------------------------------- /app/views/admin/_nav_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/admin/_nav_links.html.erb -------------------------------------------------------------------------------- /app/views/admin/_total_daily_views.html.erb: -------------------------------------------------------------------------------- 1 | <%= area_chart Post.total_views_by_day, colors: ["#a00a"] %> 2 | -------------------------------------------------------------------------------- /app/views/admin/comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/admin/comments.html.erb -------------------------------------------------------------------------------- /app/views/admin/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/admin/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/admin/posts.html.erb -------------------------------------------------------------------------------- /app/views/admin/show_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/admin/show_post.html.erb -------------------------------------------------------------------------------- /app/views/admin/users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/admin/users.html.erb -------------------------------------------------------------------------------- /app/views/after_signup/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/after_signup/_links.html.erb -------------------------------------------------------------------------------- /app/views/after_signup/find_users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/after_signup/find_users.html.erb -------------------------------------------------------------------------------- /app/views/after_signup/set_address.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/after_signup/set_address.html.erb -------------------------------------------------------------------------------- /app/views/after_signup/set_name.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/after_signup/set_name.html.erb -------------------------------------------------------------------------------- /app/views/categories/_category.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/_category.html.erb -------------------------------------------------------------------------------- /app/views/categories/_category.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/_category.json.jbuilder -------------------------------------------------------------------------------- /app/views/categories/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/_form.html.erb -------------------------------------------------------------------------------- /app/views/categories/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/edit.html.erb -------------------------------------------------------------------------------- /app/views/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/categories/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/categories/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/new.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/categories/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/checkouts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/checkouts/show.html.erb -------------------------------------------------------------------------------- /app/views/checkouts/success.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/checkouts/success.html.erb -------------------------------------------------------------------------------- /app/views/comments/_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/comments/_comment.html.erb -------------------------------------------------------------------------------- /app/views/comments/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/comments/_form.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/email_changed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/mailer/email_changed.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_alerts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/layouts/_alerts.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_categories.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/layouts/_categories.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/layouts/_navbar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_notification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/layouts/_notification.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_notifications.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/layouts/_notifications.html.erb -------------------------------------------------------------------------------- /app/views/layouts/action_text/contents/_content.html.erb: -------------------------------------------------------------------------------- 1 |
2 | <%= yield -%> 3 |
4 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/members/dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/members/dashboard.html.erb -------------------------------------------------------------------------------- /app/views/pages/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/pages/about.html.erb -------------------------------------------------------------------------------- /app/views/pages/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/pages/home.html.erb -------------------------------------------------------------------------------- /app/views/posts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/_form.html.erb -------------------------------------------------------------------------------- /app/views/posts/_image_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/_image_form.html.erb -------------------------------------------------------------------------------- /app/views/posts/_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/_post.html.erb -------------------------------------------------------------------------------- /app/views/posts/_post.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/_post.json.jbuilder -------------------------------------------------------------------------------- /app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /app/views/posts/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/new.html.erb -------------------------------------------------------------------------------- /app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /app/views/posts/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/posts/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/projects/_draggable.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/_draggable.html.erb -------------------------------------------------------------------------------- /app/views/projects/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/_form.html.erb -------------------------------------------------------------------------------- /app/views/projects/_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/_project.html.erb -------------------------------------------------------------------------------- /app/views/projects/_project.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/_project.json.jbuilder -------------------------------------------------------------------------------- /app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /app/views/projects/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/show.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/projects/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/search/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/search/_form.html.erb -------------------------------------------------------------------------------- /app/views/search/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/search/index.html.erb -------------------------------------------------------------------------------- /app/views/user/_session_manager.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/user/_session_manager.html.erb -------------------------------------------------------------------------------- /app/views/users/profile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/app/views/users/profile.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/ahoy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/ahoy.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20220131064930_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220131064930_create_posts.rb -------------------------------------------------------------------------------- /db/migrate/20220209082551_add_views_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220209082551_add_views_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20220209083507_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220209083507_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20220209085715_add_user_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220209085715_add_user_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20220209090418_add_name_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220209090418_add_name_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20220209091520_add_views_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220209091520_add_views_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20220209091605_change_views_for_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220209091605_change_views_for_users.rb -------------------------------------------------------------------------------- /db/migrate/20220216073155_create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220216073155_create_comments.rb -------------------------------------------------------------------------------- /db/migrate/20220216073214_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220216073214_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20220216073215_create_action_text_tables.action_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220216073215_create_action_text_tables.action_text.rb -------------------------------------------------------------------------------- /db/migrate/20220302075632_create_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220302075632_create_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20220316052648_add_role_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220316052648_add_role_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20220316052704_remove_body_from_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220316052704_remove_body_from_post.rb -------------------------------------------------------------------------------- /db/migrate/20220323053602_add_slug_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220323053602_add_slug_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20220323053611_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220323053611_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20220330053457_add_comment_counter_cache_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220330053457_add_comment_counter_cache_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20220330053548_populate_post_comments_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220330053548_populate_post_comments_count.rb -------------------------------------------------------------------------------- /db/migrate/20220405234838_change_json_column_in_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220405234838_change_json_column_in_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20220413060450_add_names_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220413060450_add_names_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20220413060517_create_addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220413060517_create_addresses.rb -------------------------------------------------------------------------------- /db/migrate/20220413060531_add_address_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220413060531_add_address_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20220413060545_remove_name_from_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220413060545_remove_name_from_user.rb -------------------------------------------------------------------------------- /db/migrate/20220427062239_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220427062239_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20220427062305_add_category_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220427062305_add_category_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20220511071651_create_pay_tables.pay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220511071651_create_pay_tables.pay.rb -------------------------------------------------------------------------------- /db/migrate/20220511072519_add_billing_location_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220511072519_add_billing_location_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20220518082713_add_customer_info_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220518082713_add_customer_info_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20220608093644_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220608093644_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20220629063516_create_ahoy_visits_and_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220629063516_create_ahoy_visits_and_events.rb -------------------------------------------------------------------------------- /db/migrate/20220706092028_add_position_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/migrate/20220706092028_add_position_to_projects.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/db/seeds/development.rb -------------------------------------------------------------------------------- /db/seeds/production.rb: -------------------------------------------------------------------------------- 1 | puts 'Seeding production database...' 2 | -------------------------------------------------------------------------------- /db/seeds/test.rb: -------------------------------------------------------------------------------- 1 | puts 'Seeding test database...' 2 | -------------------------------------------------------------------------------- /episode_12.txt: -------------------------------------------------------------------------------- 1 | Episode 12 had no code. 2 | -------------------------------------------------------------------------------- /example.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/public/robots.txt -------------------------------------------------------------------------------- /rails_blog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/rails_blog -------------------------------------------------------------------------------- /rails_blog_sysv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/rails_blog_sysv -------------------------------------------------------------------------------- /scripts/stripe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/scripts/stripe.sh -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/admin_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/admin_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/categories_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/categories_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/checkouts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/checkouts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/comments_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/comments_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/drag_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/drag_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/members_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/members_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/pages_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/posts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/projects_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/search_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/search_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/action_text/rich_texts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/action_text/rich_texts.yml -------------------------------------------------------------------------------- /test/fixtures/addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/addresses.yml -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/comments.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/notifications.yml -------------------------------------------------------------------------------- /test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/posts.yml -------------------------------------------------------------------------------- /test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/address_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/models/address_test.rb -------------------------------------------------------------------------------- /test/models/category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/models/category_test.rb -------------------------------------------------------------------------------- /test/models/comment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/models/comment_test.rb -------------------------------------------------------------------------------- /test/models/notification_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/models/notification_test.rb -------------------------------------------------------------------------------- /test/models/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/models/post_test.rb -------------------------------------------------------------------------------- /test/models/project_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/models/project_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/categories_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/system/categories_test.rb -------------------------------------------------------------------------------- /test/system/posts_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/system/posts_test.rb -------------------------------------------------------------------------------- /test/system/projects_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/system/projects_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deanout/blog_application/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------