├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── rails.png │ ├── javascripts │ │ ├── application.js │ │ ├── sessions.js.coffee │ │ ├── static_pages.js.coffee │ │ └── users.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── custom.css.scss │ │ ├── sessions.css.scss │ │ ├── static_pages.css.scss │ │ └── users.css.scss ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ ├── .keep │ │ └── signed_in_user.rb │ ├── microposts_controller.rb │ ├── relationships_controller.rb │ ├── sessions_controller.rb │ ├── static_pages_controller.rb │ ├── users │ │ ├── followers_controller.rb │ │ └── following_controller.rb │ └── users_controller.rb ├── decorators │ └── micropost_decorator.rb ├── helpers │ ├── application_helper.rb │ ├── sessions_helper.rb │ ├── static_pages_helper.rb │ └── users_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── concerns │ │ ├── .keep │ │ └── emailable.rb │ ├── micropost.rb │ ├── relationship.rb │ └── user.rb ├── presenters │ └── users │ │ ├── follow_presenter.rb │ │ ├── followed_users_presenter.rb │ │ └── followers_presenter.rb └── views │ ├── layouts │ ├── _footer.html.erb │ ├── _header.html.erb │ ├── _shim.html.erb │ └── application.html.erb │ ├── microposts │ └── _micropost.html.erb │ ├── relationships │ ├── create.js.erb │ └── destroy.js.erb │ ├── sessions │ └── new.html.erb │ ├── shared │ ├── _error_messages.html.erb │ ├── _feed.html.erb │ ├── _feed_item.html.erb │ ├── _micropost_form.html.erb │ ├── _stats.html.erb │ └── _user_info.html.erb │ ├── static_pages │ ├── _contact_justin.html.erb │ ├── about.html.erb │ ├── contact.html.erb │ ├── help.html.erb │ ├── home.html.erb │ └── show.html.erb │ └── users │ ├── _follow.html.erb │ ├── _follow_form.html.erb │ ├── _unfollow.html.erb │ ├── _user.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── show_follow.html.erb ├── bin ├── bundle ├── git-railsconf.zsh ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cucumber.yml ├── database.yml.example ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20130311191400_create_users.rb │ ├── 20130311194153_add_index_to_users_email.rb │ ├── 20130311201841_add_password_digest_to_users.rb │ ├── 20130314184954_add_remember_token_to_users.rb │ ├── 20130315015932_add_admin_to_users.rb │ ├── 20130315175534_create_microposts.rb │ ├── 20130315230445_create_relationships.rb │ └── 20140405044857_add_profanity_counter_to_user.rb ├── schema.rb └── seeds.rb ├── features ├── signing_in.feature ├── step_definitions │ └── authentication_steps.rb └── support │ └── env.rb ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── cucumber.rake │ └── sample_data.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── assets │ ├── application-4962059d8f80f9bb096692bacc29c4e8.css │ ├── application-4962059d8f80f9bb096692bacc29c4e8.css.gz │ ├── application-eeb856e3fe2c8f879c91d0e81d59cb40.js │ ├── application-eeb856e3fe2c8f879c91d0e81d59cb40.js.gz │ ├── glyphicons-halflings-c806376f05e4ccabe2c5315a8e95667c.png │ ├── glyphicons-halflings-white-62b67d9edee3db90d18833087f848d6e.png │ ├── manifest-802de9eb1c853769101852422b620883.json │ └── rails-231a680f23887d9dd70710ea5efd3c62.png ├── favicon.ico └── robots.txt ├── script └── cucumber ├── spec ├── controllers │ ├── microposts_controller_spec.rb │ └── relationships_controller_spec.rb ├── decorators │ └── micropost_decorator_spec.rb ├── factories.rb ├── helpers │ └── application_helper_spec.rb ├── models │ ├── concerns │ │ └── emailable_spec.rb │ ├── micropost_spec.rb │ ├── relationship_spec.rb │ └── user_spec.rb ├── requests │ ├── authentication_pages_spec.rb │ ├── micropost_pages_spec.rb │ ├── static_pages_spec.rb │ └── user_pages_spec.rb ├── spec_helper.rb └── support │ └── utilities.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --drb 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/sessions.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/javascripts/sessions.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/static_pages.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/javascripts/static_pages.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/users.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/javascripts/users.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/custom.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/stylesheets/custom.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sessions.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/stylesheets/sessions.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/static_pages.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/stylesheets/static_pages.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/assets/stylesheets/users.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/signed_in_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/concerns/signed_in_user.rb -------------------------------------------------------------------------------- /app/controllers/microposts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/microposts_controller.rb -------------------------------------------------------------------------------- /app/controllers/relationships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/relationships_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/followers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/users/followers_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/following_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/users/following_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/decorators/micropost_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/decorators/micropost_decorator.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/helpers/sessions_helper.rb -------------------------------------------------------------------------------- /app/helpers/static_pages_helper.rb: -------------------------------------------------------------------------------- 1 | module StaticPagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/emailable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/models/concerns/emailable.rb -------------------------------------------------------------------------------- /app/models/micropost.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/models/micropost.rb -------------------------------------------------------------------------------- /app/models/relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/models/relationship.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/presenters/users/follow_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/presenters/users/follow_presenter.rb -------------------------------------------------------------------------------- /app/presenters/users/followed_users_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/presenters/users/followed_users_presenter.rb -------------------------------------------------------------------------------- /app/presenters/users/followers_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/presenters/users/followers_presenter.rb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_shim.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/layouts/_shim.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/microposts/_micropost.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/microposts/_micropost.html.erb -------------------------------------------------------------------------------- /app/views/relationships/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/relationships/create.js.erb -------------------------------------------------------------------------------- /app/views/relationships/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/relationships/destroy.js.erb -------------------------------------------------------------------------------- /app/views/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/shared/_feed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/shared/_feed.html.erb -------------------------------------------------------------------------------- /app/views/shared/_feed_item.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/shared/_feed_item.html.erb -------------------------------------------------------------------------------- /app/views/shared/_micropost_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/shared/_micropost_form.html.erb -------------------------------------------------------------------------------- /app/views/shared/_stats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/shared/_stats.html.erb -------------------------------------------------------------------------------- /app/views/shared/_user_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/shared/_user_info.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/_contact_justin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/static_pages/_contact_justin.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/static_pages/about.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/contact.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/static_pages/contact.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/static_pages/help.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/static_pages/home.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/show.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/users/_follow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/_follow.html.erb -------------------------------------------------------------------------------- /app/views/users/_follow_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/_follow_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_unfollow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/_unfollow.html.erb -------------------------------------------------------------------------------- /app/views/users/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/_user.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /app/views/users/show_follow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/app/views/users/show_follow.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/git-railsconf.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/bin/git-railsconf.zsh -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20130311191400_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20130311191400_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20130311194153_add_index_to_users_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20130311194153_add_index_to_users_email.rb -------------------------------------------------------------------------------- /db/migrate/20130311201841_add_password_digest_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20130311201841_add_password_digest_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130314184954_add_remember_token_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20130314184954_add_remember_token_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130315015932_add_admin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20130315015932_add_admin_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130315175534_create_microposts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20130315175534_create_microposts.rb -------------------------------------------------------------------------------- /db/migrate/20130315230445_create_relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20130315230445_create_relationships.rb -------------------------------------------------------------------------------- /db/migrate/20140405044857_add_profanity_counter_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/migrate/20140405044857_add_profanity_counter_to_user.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /features/signing_in.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/features/signing_in.feature -------------------------------------------------------------------------------- /features/step_definitions/authentication_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/features/step_definitions/authentication_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/sample_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/lib/tasks/sample_data.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/500.html -------------------------------------------------------------------------------- /public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css -------------------------------------------------------------------------------- /public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/application-4962059d8f80f9bb096692bacc29c4e8.css.gz -------------------------------------------------------------------------------- /public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js -------------------------------------------------------------------------------- /public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js.gz -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-c806376f05e4ccabe2c5315a8e95667c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/glyphicons-halflings-c806376f05e4ccabe2c5315a8e95667c.png -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-white-62b67d9edee3db90d18833087f848d6e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/glyphicons-halflings-white-62b67d9edee3db90d18833087f848d6e.png -------------------------------------------------------------------------------- /public/assets/manifest-802de9eb1c853769101852422b620883.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/manifest-802de9eb1c853769101852422b620883.json -------------------------------------------------------------------------------- /public/assets/rails-231a680f23887d9dd70710ea5efd3c62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/assets/rails-231a680f23887d9dd70710ea5efd3c62.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/script/cucumber -------------------------------------------------------------------------------- /spec/controllers/microposts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/controllers/microposts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/relationships_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/controllers/relationships_controller_spec.rb -------------------------------------------------------------------------------- /spec/decorators/micropost_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/decorators/micropost_decorator_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/emailable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/models/concerns/emailable_spec.rb -------------------------------------------------------------------------------- /spec/models/micropost_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/models/micropost_spec.rb -------------------------------------------------------------------------------- /spec/models/relationship_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/models/relationship_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/requests/authentication_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/requests/authentication_pages_spec.rb -------------------------------------------------------------------------------- /spec/requests/micropost_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/requests/micropost_pages_spec.rb -------------------------------------------------------------------------------- /spec/requests/static_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/requests/static_pages_spec.rb -------------------------------------------------------------------------------- /spec/requests/user_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/requests/user_pages_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/fat-code-refactoring-techniques/HEAD/spec/support/utilities.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------