├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── README.rdoc ├── Rakefile ├── _COMMANDS.txt ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── original │ │ │ └── rails1.jpg │ │ └── user.jpg │ ├── javascripts │ │ ├── about.js.coffee │ │ ├── admin │ │ │ └── application.js │ │ ├── application.js │ │ └── contacts.js.coffee │ └── stylesheets │ │ ├── admin │ │ ├── application.css.scss │ │ ├── login.css.scss │ │ ├── main.css.scss │ │ └── partials │ │ │ ├── _mixins.css.scss │ │ │ └── _variables.css.scss │ │ ├── application.css.scss │ │ ├── main.css.scss │ │ └── partials │ │ ├── _mixins.css.scss │ │ └── _variables.css.scss ├── controllers │ ├── about_controller.rb │ ├── admin │ │ ├── application_controller.rb │ │ ├── categories_controller.rb │ │ ├── comments_controller.rb │ │ ├── posts_controller.rb │ │ ├── sessions_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── categories_controller.rb │ ├── comments_controller.rb │ ├── concerns │ │ └── .keep │ ├── contacts_controller.rb │ └── posts_controller.rb ├── helpers │ ├── about_helper.rb │ ├── admin │ │ ├── categories_helper.rb │ │ ├── comments_helper.rb │ │ ├── posts_helper.rb │ │ ├── sessions_helper.rb │ │ └── users_helper.rb │ ├── application_helper.rb │ ├── categories_helper.rb │ ├── comments_helper.rb │ ├── contacts_helper.rb │ └── posts_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── category.rb │ ├── comment.rb │ ├── concerns │ │ └── .keep │ ├── contact.rb │ ├── post.rb │ └── user.rb └── views │ ├── about │ └── index.html.erb │ ├── admin │ ├── categories │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── comments │ │ └── index.html.erb │ ├── posts │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ └── users │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── categories │ └── show.html.erb │ ├── comments │ └── new.html.erb │ ├── contacts │ └── new.html.erb │ ├── layouts │ ├── admin │ │ ├── application.html.erb │ │ └── login.html.erb │ └── application.html.erb │ ├── partials │ ├── _comments.html.erb │ ├── _footer.html.erb │ ├── _search.html.erb │ ├── _sidebar.html.erb │ └── admin │ │ ├── _footer.html.erb │ │ └── _search.html.erb │ └── posts │ ├── index.html.erb │ └── show.html.erb ├── bin ├── bundle ├── rails ├── rake └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20141023224943_create_posts.rb │ ├── 20141023225035_create_categories.rb │ ├── 20141023225333_create_comments.rb │ ├── 20141023230510_create_users.rb │ ├── 20141027172718_remove_column.rb │ ├── 20141027172754_add_attachment_image_to_posts.rb │ └── 20141027222004_add_post_id_to_comments.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── robots.txt └── system │ └── posts │ └── images │ └── 000 │ └── 000 │ ├── 001 │ └── original │ │ └── img2.jpg │ ├── 002 │ └── original │ │ ├── img2.jpg │ │ └── img3.jpg │ ├── 003 │ └── original │ │ └── img3.jpg │ ├── 004 │ └── original │ │ └── img4.jpg │ ├── 023 │ └── original │ │ └── img4.jpg │ └── 026 │ └── original │ └── img1.jpg ├── test ├── controllers │ ├── .keep │ ├── about_controller_test.rb │ ├── admin │ │ ├── categories_controller_test.rb │ │ ├── comments_controller_test.rb │ │ ├── posts_controller_test.rb │ │ ├── sessions_controller_test.rb │ │ └── users_controller_test.rb │ ├── categories_controller_test.rb │ ├── comments_controller_test.rb │ ├── contacts_controller_test.rb │ └── posts_controller_test.rb ├── fixtures │ ├── .keep │ ├── categories.yml │ ├── comments.yml │ ├── posts.yml │ └── users.yml ├── helpers │ ├── .keep │ ├── about_helper_test.rb │ ├── admin │ │ ├── categories_helper_test.rb │ │ ├── comments_helper_test.rb │ │ ├── posts_helper_test.rb │ │ ├── sessions_helper_test.rb │ │ └── users_helper_test.rb │ ├── categories_helper_test.rb │ ├── comments_helper_test.rb │ ├── contacts_helper_test.rb │ └── posts_helper_test.rb ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── category_test.rb │ ├── comment_test.rb │ ├── post_test.rb │ └── user_test.rb └── test_helper.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/README.md -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/Rakefile -------------------------------------------------------------------------------- /_COMMANDS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/_COMMANDS.txt -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/original/rails1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/images/original/rails1.jpg -------------------------------------------------------------------------------- /app/assets/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/images/user.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/about.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/javascripts/about.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/admin/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/javascripts/admin/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/contacts.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/javascripts/contacts.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/stylesheets/admin/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/login.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/stylesheets/admin/login.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/main.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/stylesheets/admin/main.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/partials/_mixins.css.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/partials/_variables.css.scss: -------------------------------------------------------------------------------- 1 | $color:blue; -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/assets/stylesheets/main.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_mixins.css.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_variables.css.scss: -------------------------------------------------------------------------------- 1 | $color: green; -------------------------------------------------------------------------------- /app/controllers/about_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/about_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/admin/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/admin/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/admin/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/admin/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/contacts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/contacts_controller.rb -------------------------------------------------------------------------------- /app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /app/helpers/about_helper.rb: -------------------------------------------------------------------------------- 1 | module AboutHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin/categories_helper.rb: -------------------------------------------------------------------------------- 1 | module Admin::CategoriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin/comments_helper.rb: -------------------------------------------------------------------------------- 1 | module Admin::CommentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module Admin::PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module Admin::SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin/users_helper.rb: -------------------------------------------------------------------------------- 1 | module Admin::UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/categories_helper.rb: -------------------------------------------------------------------------------- 1 | module CategoriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/comments_helper.rb: -------------------------------------------------------------------------------- 1 | module CommentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/about/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/about/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/categories/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/categories/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/comments/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/posts/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/posts/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/posts/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/users/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/admin/users/new.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/comments/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/comments/new.html.erb -------------------------------------------------------------------------------- /app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/contacts/new.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/layouts/admin/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin/login.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/layouts/admin/login.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/partials/_comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/partials/_comments.html.erb -------------------------------------------------------------------------------- /app/views/partials/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/partials/_footer.html.erb -------------------------------------------------------------------------------- /app/views/partials/_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/partials/_search.html.erb -------------------------------------------------------------------------------- /app/views/partials/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/partials/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/partials/admin/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/partials/admin/_footer.html.erb -------------------------------------------------------------------------------- /app/views/partials/admin/_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/partials/admin/_search.html.erb -------------------------------------------------------------------------------- /app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20141023224943_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/migrate/20141023224943_create_posts.rb -------------------------------------------------------------------------------- /db/migrate/20141023225035_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/migrate/20141023225035_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20141023225333_create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/migrate/20141023225333_create_comments.rb -------------------------------------------------------------------------------- /db/migrate/20141023230510_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/migrate/20141023230510_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20141027172718_remove_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/migrate/20141027172718_remove_column.rb -------------------------------------------------------------------------------- /db/migrate/20141027172754_add_attachment_image_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/migrate/20141027172754_add_attachment_image_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20141027222004_add_post_id_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/migrate/20141027222004_add_post_id_to_comments.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/system/posts/images/000/000/001/original/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/system/posts/images/000/000/001/original/img2.jpg -------------------------------------------------------------------------------- /public/system/posts/images/000/000/002/original/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/system/posts/images/000/000/002/original/img2.jpg -------------------------------------------------------------------------------- /public/system/posts/images/000/000/002/original/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/system/posts/images/000/000/002/original/img3.jpg -------------------------------------------------------------------------------- /public/system/posts/images/000/000/003/original/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/system/posts/images/000/000/003/original/img3.jpg -------------------------------------------------------------------------------- /public/system/posts/images/000/000/004/original/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/system/posts/images/000/000/004/original/img4.jpg -------------------------------------------------------------------------------- /public/system/posts/images/000/000/023/original/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/system/posts/images/000/000/023/original/img4.jpg -------------------------------------------------------------------------------- /public/system/posts/images/000/000/026/original/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/public/system/posts/images/000/000/026/original/img1.jpg -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/about_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/about_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/categories_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/admin/categories_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/comments_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/admin/comments_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/admin/posts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/admin/sessions_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/admin/users_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/categories_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/categories_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/comments_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/comments_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/contacts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/contacts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/controllers/posts_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/fixtures/comments.yml -------------------------------------------------------------------------------- /test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/fixtures/posts.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/about_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/about_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/admin/categories_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/admin/categories_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/admin/comments_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/admin/comments_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/admin/posts_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/admin/posts_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/admin/sessions_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/admin/sessions_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/admin/users_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/admin/users_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/categories_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/categories_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/comments_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/comments_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/contacts_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/contacts_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/posts_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/helpers/posts_helper_test.rb -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/models/category_test.rb -------------------------------------------------------------------------------- /test/models/comment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/models/comment_test.rb -------------------------------------------------------------------------------- /test/models/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/models/post_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/rblog/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------