├── .babelrc ├── .gitignore ├── .postcssrc.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ └── tweets.coffee │ └── stylesheets │ │ ├── announcements.scss │ │ ├── application.scss │ │ ├── scaffolds.scss │ │ ├── sticky-footer.scss │ │ └── tweets.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── admin │ │ ├── announcements_controller.rb │ │ ├── application_controller.rb │ │ ├── notifications_controller.rb │ │ └── users_controller.rb │ ├── announcements_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── home_controller.rb │ ├── notifications_controller.rb │ ├── tweets_controller.rb │ └── users │ │ └── omniauth_callbacks_controller.rb ├── dashboards │ ├── announcement_dashboard.rb │ ├── notification_dashboard.rb │ └── user_dashboard.rb ├── helpers │ ├── announcements_helper.rb │ ├── application_helper.rb │ ├── devise_helper.rb │ └── tweets_helper.rb ├── javascript │ └── packs │ │ ├── application.js │ │ └── controllers │ │ ├── inline_edit_controller.js │ │ └── tweet_form_controller.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── announcement.rb │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── notification.rb │ ├── service.rb │ ├── tweet.rb │ └── user.rb └── views │ ├── admin │ └── users │ │ └── show.html.erb │ ├── announcements │ └── index.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.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 │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── home │ ├── index.html.erb │ ├── privacy.html.erb │ └── terms.html.erb │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── notifications │ └── index.html.erb │ ├── shared │ ├── _footer.html.erb │ ├── _head.html.erb │ ├── _navbar.html.erb │ └── _notices.html.erb │ └── tweets │ ├── _form.html.erb │ ├── _tweet.html.erb │ ├── _tweet.json.jbuilder │ ├── create.js.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── update.js.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── gravatar.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20180227203858_devise_create_users.rb │ ├── 20180227203923_create_announcements.rb │ ├── 20180227203924_create_notifications.rb │ └── 20180227204838_create_tweets.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ └── tweets_controller_test.rb ├── fixtures │ ├── .keep │ ├── announcements.yml │ ├── files │ │ └── .keep │ ├── notifications.yml │ ├── tweets.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── announcement_test.rb │ ├── notification_test.rb │ ├── tweet_test.rb │ └── user_test.rb ├── system │ ├── .keep │ └── tweets_test.rb └── test_helper.rb ├── tmp └── .keep ├── vendor └── .keep └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/.postcssrc.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.0 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/tweets.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/javascripts/tweets.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/announcements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/stylesheets/announcements.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/stylesheets/scaffolds.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sticky-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/stylesheets/sticky-footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/tweets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/assets/stylesheets/tweets.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/admin/announcements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/admin/announcements_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/notifications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/admin/notifications_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/announcements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/announcements_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/notifications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/notifications_controller.rb -------------------------------------------------------------------------------- /app/controllers/tweets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/tweets_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/controllers/users/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/dashboards/announcement_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/dashboards/announcement_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/notification_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/dashboards/notification_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/user_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/dashboards/user_dashboard.rb -------------------------------------------------------------------------------- /app/helpers/announcements_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/helpers/announcements_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/devise_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/helpers/devise_helper.rb -------------------------------------------------------------------------------- /app/helpers/tweets_helper.rb: -------------------------------------------------------------------------------- 1 | module TweetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/controllers/inline_edit_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/javascript/packs/controllers/inline_edit_controller.js -------------------------------------------------------------------------------- /app/javascript/packs/controllers/tweet_form_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/javascript/packs/controllers/tweet_form_controller.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/models/announcement.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/models/notification.rb -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/models/service.rb -------------------------------------------------------------------------------- /app/models/tweet.rb: -------------------------------------------------------------------------------- 1 | class Tweet < ApplicationRecord 2 | belongs_to :user 3 | end 4 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/admin/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/admin/users/show.html.erb -------------------------------------------------------------------------------- /app/views/announcements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/announcements/index.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/home/privacy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/home/privacy.html.erb -------------------------------------------------------------------------------- /app/views/home/terms.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/home/terms.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/notifications/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/notifications/index.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/shared/_footer.html.erb -------------------------------------------------------------------------------- /app/views/shared/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/shared/_head.html.erb -------------------------------------------------------------------------------- /app/views/shared/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/shared/_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_notices.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/shared/_notices.html.erb -------------------------------------------------------------------------------- /app/views/tweets/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/_form.html.erb -------------------------------------------------------------------------------- /app/views/tweets/_tweet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/_tweet.html.erb -------------------------------------------------------------------------------- /app/views/tweets/_tweet.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/_tweet.json.jbuilder -------------------------------------------------------------------------------- /app/views/tweets/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/create.js.erb -------------------------------------------------------------------------------- /app/views/tweets/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/edit.html.erb -------------------------------------------------------------------------------- /app/views/tweets/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/index.html.erb -------------------------------------------------------------------------------- /app/views/tweets/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/tweets/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/new.html.erb -------------------------------------------------------------------------------- /app/views/tweets/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/show.html.erb -------------------------------------------------------------------------------- /app/views/tweets/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/tweets/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/app/views/tweets/update.js.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/gravatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/gravatar.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20180227203858_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/db/migrate/20180227203858_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20180227203923_create_announcements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/db/migrate/20180227203923_create_announcements.rb -------------------------------------------------------------------------------- /db/migrate/20180227203924_create_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/db/migrate/20180227203924_create_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20180227204838_create_tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/db/migrate/20180227204838_create_tweets.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/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/gorails-screencasts/gorails-episodes-231-and-232/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/tweets_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/controllers/tweets_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/fixtures/announcements.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/fixtures/notifications.yml -------------------------------------------------------------------------------- /test/fixtures/tweets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/fixtures/tweets.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/announcement_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/models/announcement_test.rb -------------------------------------------------------------------------------- /test/models/notification_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/models/notification_test.rb -------------------------------------------------------------------------------- /test/models/tweet_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/models/tweet_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/tweets_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/system/tweets_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorails-screencasts/gorails-episodes-231-and-232/HEAD/yarn.lock --------------------------------------------------------------------------------