gitextract_k5k26vxe/ ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── apps/ │ ├── account/ │ │ ├── README.md │ │ ├── account.gemspec │ │ ├── app/ │ │ │ ├── controllers/ │ │ │ │ └── account/ │ │ │ │ ├── application_controller.rb │ │ │ │ ├── login_controller.rb │ │ │ │ └── users_controller.rb │ │ │ ├── models/ │ │ │ │ └── account/ │ │ │ │ └── user.rb │ │ │ └── views/ │ │ │ └── account/ │ │ │ ├── login/ │ │ │ │ └── new.haml │ │ │ └── users/ │ │ │ └── new.haml │ │ ├── config/ │ │ │ └── routes.rb │ │ ├── db/ │ │ │ └── migrate/ │ │ │ ├── 20140128234906_create_users.rb │ │ │ ├── 20140207012153_add_timestamp_to_users.rb │ │ │ └── 20140207164357_add_admin_to_users.rb │ │ └── lib/ │ │ ├── account/ │ │ │ └── engine.rb │ │ └── account.rb │ ├── admin/ │ │ ├── README.md │ │ ├── admin.gemspec │ │ ├── app/ │ │ │ ├── assets/ │ │ │ │ ├── javascript/ │ │ │ │ │ └── admin/ │ │ │ │ │ └── manifests/ │ │ │ │ │ └── application.js │ │ │ │ └── stylesheets/ │ │ │ │ └── admin/ │ │ │ │ ├── base.css.sass │ │ │ │ └── manifests/ │ │ │ │ └── application.css │ │ │ ├── controllers/ │ │ │ │ └── admin/ │ │ │ │ ├── application_controller.rb │ │ │ │ ├── home_controller.rb │ │ │ │ ├── login_controller.rb │ │ │ │ ├── panel_controller.rb │ │ │ │ ├── posts_controller.rb │ │ │ │ └── users_controller.rb │ │ │ ├── helpers/ │ │ │ │ └── admin/ │ │ │ │ └── application_helper.rb │ │ │ ├── models/ │ │ │ │ └── admin/ │ │ │ │ ├── post.rb │ │ │ │ └── user.rb │ │ │ ├── operations/ │ │ │ │ └── admin/ │ │ │ │ ├── post_search.rb │ │ │ │ └── user_search.rb │ │ │ └── views/ │ │ │ └── admin/ │ │ │ ├── home/ │ │ │ │ ├── index.haml │ │ │ │ ├── post_search.haml │ │ │ │ └── user_search.haml │ │ │ ├── layouts/ │ │ │ │ └── admin.haml │ │ │ ├── login/ │ │ │ │ └── new.haml │ │ │ ├── posts/ │ │ │ │ ├── _panels.haml │ │ │ │ ├── edit.haml │ │ │ │ └── show.haml │ │ │ └── users/ │ │ │ ├── _header.haml │ │ │ ├── _panels.haml │ │ │ ├── edit.haml │ │ │ ├── posts.haml │ │ │ └── show.haml │ │ ├── config/ │ │ │ └── routes.rb │ │ └── lib/ │ │ ├── admin/ │ │ │ └── engine.rb │ │ └── admin.rb │ ├── content/ │ │ ├── README.md │ │ ├── app/ │ │ │ ├── assets/ │ │ │ │ └── stylesheets/ │ │ │ │ └── content/ │ │ │ │ ├── manifests/ │ │ │ │ │ └── posts.css │ │ │ │ └── posts/ │ │ │ │ └── index.css.sass │ │ │ ├── controllers/ │ │ │ │ └── content/ │ │ │ │ ├── application_controller.rb │ │ │ │ └── posts_controller.rb │ │ │ ├── helpers/ │ │ │ │ └── content/ │ │ │ │ └── post_helper.rb │ │ │ ├── models/ │ │ │ │ └── content/ │ │ │ │ ├── post.rb │ │ │ │ └── user.rb │ │ │ └── views/ │ │ │ └── content/ │ │ │ └── posts/ │ │ │ └── index.haml │ │ ├── config/ │ │ │ └── routes.rb │ │ ├── content.gemspec │ │ ├── db/ │ │ │ └── migrate/ │ │ │ └── 20140207011608_create_posts.rb │ │ └── lib/ │ │ ├── content/ │ │ │ └── engine.rb │ │ └── content.rb │ ├── marketing/ │ │ ├── README.md │ │ ├── app/ │ │ │ ├── controllers/ │ │ │ │ └── marketing/ │ │ │ │ ├── application_controller.rb │ │ │ │ └── home_controller.rb │ │ │ └── views/ │ │ │ └── marketing/ │ │ │ └── home/ │ │ │ └── index.haml │ │ ├── config/ │ │ │ └── routes.rb │ │ ├── lib/ │ │ │ ├── marketing/ │ │ │ │ └── engine.rb │ │ │ └── marketing.rb │ │ └── marketing.gemspec │ └── shared/ │ ├── README.md │ ├── app/ │ │ ├── assets/ │ │ │ ├── javascripts/ │ │ │ │ └── shared/ │ │ │ │ └── manifests/ │ │ │ │ └── application.js │ │ │ └── stylesheets/ │ │ │ └── shared/ │ │ │ ├── base.css.sass │ │ │ └── manifests/ │ │ │ └── application.css │ │ ├── controllers/ │ │ │ └── shared/ │ │ │ └── controller/ │ │ │ ├── authentication.rb │ │ │ ├── layout.rb │ │ │ └── manifests.rb │ │ ├── helpers/ │ │ │ └── shared/ │ │ │ └── helper/ │ │ │ └── errors.rb │ │ ├── models/ │ │ │ └── shared/ │ │ │ ├── model/ │ │ │ │ └── read_only.rb │ │ │ ├── operation/ │ │ │ │ └── base.rb │ │ │ └── user/ │ │ │ ├── display.rb │ │ │ └── stub.rb │ │ └── views/ │ │ └── shared/ │ │ └── layouts/ │ │ ├── _errors.haml │ │ └── application.haml │ ├── lib/ │ │ ├── shared/ │ │ │ └── engine.rb │ │ └── shared.rb │ └── shared.gemspec ├── bin/ │ ├── bundle │ ├── rails │ └── rake ├── config/ │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments/ │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers/ │ │ ├── backtrace_silencers.rb │ │ ├── debugger.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── secret_token.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales/ │ │ └── en.yml │ └── routes.rb ├── config.ru ├── db/ │ ├── schema.rb │ └── seeds.rb ├── lib/ │ ├── assets/ │ │ └── .keep │ ├── boot_inquirer.rb │ └── tasks/ │ └── .keep ├── log/ │ └── .keep ├── public/ │ ├── 404.html │ ├── 422.html │ ├── 500.html │ └── robots.txt └── spec/ ├── account/ │ ├── factories/ │ │ └── user_factories.rb │ └── models/ │ └── user_spec.rb ├── content/ │ ├── factories/ │ │ └── post_factories.rb │ └── models/ │ └── post_spec.rb ├── fixtures/ │ ├── posts.yml │ └── users.yml ├── shared/ │ └── models/ │ └── user_display_spec.rb ├── spec_helper.rb └── support/ ├── fixture_builder.rb ├── fixture_class_name_helper.rb └── test_after_commit.rb