├── .ansible ├── books │ ├── _appfiles_book.yml │ ├── _dkim_book.yml │ ├── _healthcheck_book.yml │ ├── _postgres_book.yml │ ├── _rubyrbenv_book.yml │ ├── azbuker.yml │ ├── pgdump.yml │ └── pgrestore.yml ├── group_vars │ └── all.yml ├── hosts.yml ├── roles │ ├── anxs.postgresql │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansible.cfg │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── configure.yml │ │ │ ├── databases.yml │ │ │ ├── extensions.yml │ │ │ ├── extensions │ │ │ │ ├── contrib.yml │ │ │ │ ├── dev_headers.yml │ │ │ │ └── postgis.yml │ │ │ ├── install.yml │ │ │ ├── install_yum.yml │ │ │ ├── main.yml │ │ │ ├── monit.yml │ │ │ ├── users.yml │ │ │ └── users_privileges.yml │ │ ├── templates │ │ │ ├── HOWTO.postgresql.conf │ │ │ ├── etc_apt_preferences.d_apt_postgresql_org_pub_repos_apt.pref.j2 │ │ │ ├── etc_monit_conf.d_postgresql.j2 │ │ │ ├── etc_systemd_system_postgresql.service.d_custom.conf.j2 │ │ │ ├── pg_hba.conf.j2 │ │ │ ├── postgresql.conf-10.j2 │ │ │ ├── postgresql.conf-10.orig │ │ │ ├── postgresql.conf-9.1.j2 │ │ │ ├── postgresql.conf-9.1.orig │ │ │ ├── postgresql.conf-9.2.j2 │ │ │ ├── postgresql.conf-9.2.orig │ │ │ ├── postgresql.conf-9.3.j2 │ │ │ ├── postgresql.conf-9.3.orig │ │ │ ├── postgresql.conf-9.4.j2 │ │ │ ├── postgresql.conf-9.4.orig │ │ │ ├── postgresql.conf-9.5.j2 │ │ │ ├── postgresql.conf-9.5.orig │ │ │ ├── postgresql.conf-9.6.j2 │ │ │ └── postgresql.conf-9.6.orig │ │ ├── tests │ │ │ ├── Dockerfile-centos6 │ │ │ ├── Dockerfile-ubuntu14.04 │ │ │ ├── docker │ │ │ │ ├── group_vars │ │ │ │ │ ├── all.yml │ │ │ │ │ └── postgresql.yml │ │ │ │ ├── hosts │ │ │ │ ├── images │ │ │ │ │ ├── Dockerfile.centos.6-builded │ │ │ │ │ ├── Dockerfile.centos.7-builded │ │ │ │ │ ├── Dockerfile.debian.8-builded │ │ │ │ │ ├── Dockerfile.debian.9-builded │ │ │ │ │ └── Dockerfile.ubuntu.16.04-builded │ │ │ │ └── site.yml │ │ │ ├── idempotence_check.sh │ │ │ ├── playbook.yml │ │ │ └── vars.yml │ │ └── vars │ │ │ ├── Debian.yml │ │ │ ├── RedHat.yml │ │ │ ├── empty.yml │ │ │ └── xenial.yml │ ├── nickhammond.logrotate │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── logrotate.d.j2 │ │ └── tests │ │ │ ├── Vagrantfile │ │ │ ├── inventory │ │ │ └── test.yml │ └── zzet.rbenv │ │ ├── .kitchen.yml │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── files │ │ ├── default-gems │ │ ├── gemrc │ │ └── vars │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ ├── .galaxy_install_info │ │ └── main.yml │ │ ├── role.yml │ │ ├── tasks │ │ ├── apt_build_depends.yml │ │ ├── dnf_build_depends.yml │ │ ├── homebrew_build_depends.yml │ │ ├── main.yml │ │ ├── pacman_build_depends.yml │ │ ├── system_install.yml │ │ ├── user_install.yml │ │ └── yum_build_depends.yml │ │ ├── templates │ │ ├── rbenv_system.sh.j2 │ │ └── rbenv_user.sh.j2 │ │ ├── test │ │ └── integration │ │ │ ├── default │ │ │ └── serverspec │ │ │ │ └── rbenv_spec.rb │ │ │ ├── helpers │ │ │ └── serverspec │ │ │ │ └── spec_helper.rb │ │ │ └── site.yml │ │ └── vars │ │ ├── main.yml │ │ ├── system.yml │ │ └── user.yml └── templates │ ├── dkim │ └── keys │ │ └── azbuker.ru │ │ ├── mail.private │ │ └── mail.txt │ └── nginx │ └── app_virtualhost.conf.j2 ├── .example.env ├── .gitignore ├── .rspec ├── .ruby-version ├── Capfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── README.md ├── README_en.md ├── Rakefile ├── ansible.cfg ├── app ├── admin │ ├── authors.rb │ ├── books.rb │ ├── dashboards.rb │ ├── lots.rb │ ├── oz_books.rb │ └── users.rb ├── assets │ ├── images │ │ ├── blank.gif │ │ ├── fancybox_loading.gif │ │ ├── fancybox_loading@2x.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ └── fancybox_sprite@2x.png │ ├── javascripts │ │ ├── active_admin.js │ │ ├── application.js │ │ ├── books.js │ │ ├── bootstrap-alerts.js │ │ ├── bootstrap-buttons.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tabs.js │ │ ├── bootstrap-twipsy.js │ │ ├── jquery-1.11.2.min.js │ │ ├── jquery-migrate.js │ │ ├── jquery.fancybox.pack.js │ │ ├── jquery.typewatch.js │ │ ├── lots.js.erb │ │ └── stpages.js │ └── stylesheets │ │ ├── active_admin.css.scss │ │ ├── application.css │ │ ├── bootstrap.css │ │ ├── elements.css │ │ ├── jquery.fancybox.css │ │ ├── lots.css │ │ ├── override_forms.css │ │ └── overrides.css ├── controllers │ ├── application_controller.rb │ ├── books_controller.rb │ ├── lots_controller.rb │ ├── registrations_controller.rb │ ├── send_letters_controller.rb │ └── stpages_controller.rb ├── form_builders │ └── bootstrap_form_builder.rb ├── helpers │ ├── application_helper.rb │ ├── bootstrap_paginate_renderer.rb │ └── html_helper.rb ├── mailers │ ├── .gitkeep │ └── user_mailer.rb ├── models │ ├── .gitkeep │ ├── ability.rb │ ├── author.rb │ ├── book.rb │ ├── globals.rb │ ├── lot.rb │ ├── oz_book.rb │ ├── user.rb │ └── user_message.rb ├── tasks │ └── book_retriever.rb └── views │ ├── books │ ├── search.html.erb │ └── suggest.js.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── _mail_footer.html.erb │ │ ├── confirmation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ ├── new.html.erb │ │ ├── rega.html.erb │ │ └── show.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ ├── _activatemail_link.erb │ │ ├── _forgetpass_link.erb │ │ ├── _links.erb │ │ ├── _loginform.html.erb │ │ ├── _regform.html.erb │ │ └── _register_link.erb │ └── unlocks │ │ └── new.html.erb │ ├── layouts │ └── application.html.erb │ ├── lots │ ├── author.html.erb │ ├── book.html.erb │ ├── edit.html.erb │ ├── genre.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── parts │ │ ├── _another_book.html.erb │ │ ├── _another_books.html.erb │ │ ├── _big_book.html.erb │ │ ├── _big_book4.html.erb │ │ ├── _big_lot_cover.html.erb │ │ ├── _book_suggest.html.erb │ │ ├── _bread_crumb.html.erb │ │ ├── _captcha_block.html.erb │ │ ├── _form.html.erb │ │ ├── _lot_pair.html.erb │ │ ├── _micro_lot.html.erb │ │ ├── _open_closed_pills.html.erb │ │ ├── _ozon_partner_link.html.erb │ │ ├── _sendabuse_form.html.erb │ │ ├── _sendmsg_form.html.erb │ │ ├── _serp_book.html.erb │ │ ├── _serp_books.html.erb │ │ ├── _share_buttons_left.html.erb │ │ ├── _sim_lots.html.erb │ │ └── _similar_lot.html.erb │ └── show.html.erb │ ├── send_letters │ ├── abuse.js.erb │ ├── message.js.erb │ └── success.js.erb │ ├── stpages │ ├── error_404.html.erb │ ├── error_500.html.erb │ ├── howitworks.erb │ ├── terms.erb │ └── why.erb │ └── user_mailer │ ├── abuse.html.erb │ ├── msg.html.erb │ └── welcome_alert.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.example.yml ├── deploy.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── active_admin.rb │ ├── backtrace_silencers.rb │ ├── devise.rb │ ├── inflections.rb │ ├── kaminari.rb │ ├── mime_types.rb │ ├── paperclip_ext.rb │ ├── recaptcha.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── will_paginate.rb │ └── wrap_parameters.rb ├── locales │ ├── active_admin.en.yml │ ├── active_admin.ru.yml │ ├── devise.en.yml │ ├── devise.ru.yml │ ├── en_custom.yml │ ├── ru.yml │ └── ru_custom.yml ├── newrelic.yml ├── routes.rb └── schedule.rb ├── db ├── migrate │ ├── 20111227163009_devise_create_users.rb │ ├── 20120108162833_add_nik_skype_phone_to_user.rb │ ├── 20120117143222_create_authors.rb │ ├── 20120122185045_create_books.rb │ ├── 20120122185229_authors_books.rb │ ├── 20120124161034_create_lots.rb │ ├── 20120630135901_add_search_index_to_books_authors.rb │ ├── 20120708164433_create_oz_books.rb │ ├── 20120710094227_create_delayed_jobs.rb │ ├── 20120715123926_add_indexes_to_books.rb │ ├── 20120719155712_create_admin_notes.rb │ └── 20120719155713_move_admin_notes_to_comments.rb ├── seeds.rb └── structure.sql ├── doc └── README_FOR_APP ├── guard_debug.sh ├── lib ├── assets │ └── .gitkeep ├── azb_utils.rb ├── custom_devise_failure.rb ├── ozon_book_parser.rb └── tasks │ ├── .gitkeep │ ├── db_ops.rake │ ├── debug.rake │ ├── pgdump_fix.rake │ ├── sample_data.rake │ └── tmp_cleanup.rake ├── ozbooks.zip ├── public ├── 422.html ├── _404.html ├── _500.html ├── covers │ ├── missing_original.gif │ ├── missing_original.png │ ├── missing_x120.gif │ ├── missing_x120.png │ ├── missing_x200.gif │ ├── missing_x200.png │ ├── missing_x300.gif │ └── missing_x300.png ├── d957c740b68c99460027ce00.html ├── favicon.ico ├── favicon.png ├── ico │ ├── azbuker-apple-114x114.png │ ├── azbuker-apple-57x57.png │ ├── azbuker-apple-72x72.png │ ├── favicon.gif │ └── favicon.ico ├── img │ ├── assets │ │ └── book │ │ │ ├── 1_120max.jpg │ │ │ ├── 1_200.jpg │ │ │ ├── 1_200max.jpg │ │ │ ├── 2_120max.jpg │ │ │ ├── 2_200.jpg │ │ │ ├── 2_200max.jpg │ │ │ ├── 3_120max.jpg │ │ │ ├── 3_200.jpg │ │ │ ├── 3_200max.jpg │ │ │ ├── 4_120max.jpg │ │ │ ├── 4_200.jpg │ │ │ └── 4_200max.jpg │ ├── bg-noise.gif │ ├── browsers.png │ ├── grid-18px.png │ ├── ico │ │ ├── fail_icon.png │ │ ├── ico_facebook_mini.png │ │ ├── ico_skype.png │ │ ├── ico_twitter_mini.png │ │ ├── success_icon.png │ │ └── vaga │ │ │ ├── _mail.png │ │ │ ├── error.png │ │ │ ├── help.png │ │ │ ├── mail.png │ │ │ ├── mobile.png │ │ │ ├── user.png │ │ │ └── user_edit.png │ └── noise.png ├── robots.txt ├── system │ ├── ozbooks │ │ └── counter.txt │ └── paperclip_attachments.yml └── yandex_529398f9aacefb51.txt ├── pull_request_template.md ├── script └── rails ├── spec ├── controllers │ ├── books_controller_spec.rb │ ├── lots_controller_spec.rb │ ├── lots_indexes_spec.rb │ ├── registrations_controller_spec.rb │ ├── send_letters_controller_spec.rb │ └── stpages_controller_spec.rb ├── factories │ ├── author_factory.rb │ ├── book_factory.rb │ ├── lot_factory.rb │ ├── oz_book_factory.rb │ └── user_factory.rb ├── fixtures │ ├── almost_huge.jpg │ ├── huge_picture.jpg │ ├── minimal_dimensions.gif │ ├── no_resize_original.png │ └── too_small_dimensions.tiff ├── lots_populator.rb ├── models │ ├── author_spec.rb │ ├── book_spec.rb │ ├── lot_spec.rb │ ├── oz_book_spec.rb │ ├── show_lots_box_spec.rb │ ├── user_message_spec.rb │ └── user_spec.rb ├── requests │ ├── lots_spec.rb │ └── users_spec.rb ├── spec_helper.rb └── support │ └── database_preparation.rb └── vendor ├── assets └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.ansible/books/_appfiles_book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/_appfiles_book.yml -------------------------------------------------------------------------------- /.ansible/books/_dkim_book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/_dkim_book.yml -------------------------------------------------------------------------------- /.ansible/books/_healthcheck_book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/_healthcheck_book.yml -------------------------------------------------------------------------------- /.ansible/books/_postgres_book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/_postgres_book.yml -------------------------------------------------------------------------------- /.ansible/books/_rubyrbenv_book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/_rubyrbenv_book.yml -------------------------------------------------------------------------------- /.ansible/books/azbuker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/azbuker.yml -------------------------------------------------------------------------------- /.ansible/books/pgdump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/pgdump.yml -------------------------------------------------------------------------------- /.ansible/books/pgrestore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/books/pgrestore.yml -------------------------------------------------------------------------------- /.ansible/group_vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/group_vars/all.yml -------------------------------------------------------------------------------- /.ansible/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/hosts.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/.gitignore -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/.travis.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/LICENSE -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/README.md -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | roles_path = ../ 3 | allow_world_readable_tmpfiles = True 4 | -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/defaults/main.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/handlers/main.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Thu Jul 26 09:31:50 2018', version: v1.10.1} 2 | -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/meta/main.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/configure.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/databases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/databases.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/extensions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/extensions.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/extensions/contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/extensions/contrib.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/extensions/dev_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/extensions/dev_headers.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/extensions/postgis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/extensions/postgis.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/install.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/install_yum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/install_yum.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/main.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/monit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/monit.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/users.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tasks/users_privileges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tasks/users_privileges.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/HOWTO.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/HOWTO.postgresql.conf -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/etc_apt_preferences.d_apt_postgresql_org_pub_repos_apt.pref.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/etc_apt_preferences.d_apt_postgresql_org_pub_repos_apt.pref.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/etc_monit_conf.d_postgresql.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/etc_monit_conf.d_postgresql.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/etc_systemd_system_postgresql.service.d_custom.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/etc_systemd_system_postgresql.service.d_custom.conf.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/pg_hba.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/pg_hba.conf.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-10.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-10.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-10.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-10.orig -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.1.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.1.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.1.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.1.orig -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.2.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.2.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.2.orig -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.3.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.3.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.3.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.3.orig -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.4.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.4.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.4.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.4.orig -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.5.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.5.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.5.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.5.orig -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.6.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.6.j2 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.6.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/templates/postgresql.conf-9.6.orig -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/Dockerfile-centos6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/Dockerfile-centos6 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/Dockerfile-ubuntu14.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/Dockerfile-ubuntu14.04 -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/group_vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/group_vars/all.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/group_vars/postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/group_vars/postgresql.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/hosts -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.centos.6-builded: -------------------------------------------------------------------------------- 1 | FROM centos:6 2 | 3 | RUN yum install iproute epel-release sudo -y 4 | -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.centos.7-builded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.centos.7-builded -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.debian.8-builded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.debian.8-builded -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.debian.9-builded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.debian.9-builded -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.ubuntu.16.04-builded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/images/Dockerfile.ubuntu.16.04-builded -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/docker/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/docker/site.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/idempotence_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/idempotence_check.sh -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/playbook.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/tests/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/tests/vars.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/vars/Debian.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/vars/RedHat.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/vars/empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/vars/empty.yml -------------------------------------------------------------------------------- /.ansible/roles/anxs.postgresql/vars/xenial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/anxs.postgresql/vars/xenial.yml -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/.gitignore: -------------------------------------------------------------------------------- 1 | tests/.vagrant 2 | test.retry 3 | -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/.travis.yml -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/LICENSE -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/README.md -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/defaults/main.yml -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Sat Jul 28 07:44:50 2018', version: master} 2 | -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/meta/main.yml -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/tasks/main.yml -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/templates/logrotate.d.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/templates/logrotate.d.j2 -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/tests/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/tests/Vagrantfile -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /.ansible/roles/nickhammond.logrotate/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/nickhammond.logrotate/tests/test.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/.kitchen.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/.travis.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/README.md -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/defaults/main.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/files/default-gems: -------------------------------------------------------------------------------- 1 | bundler 2 | -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/files/gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/files/gemrc -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/files/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/files/vars -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/handlers/main.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Thu Jul 26 06:26:25 2018', version: 3.4.0} 2 | -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/meta/main.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/role.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/apt_build_depends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/tasks/apt_build_depends.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/dnf_build_depends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/tasks/dnf_build_depends.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/homebrew_build_depends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/tasks/homebrew_build_depends.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/tasks/main.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/pacman_build_depends.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - pacman: name=base-devel state=present update_cache=yes -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/system_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/tasks/system_install.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/user_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/tasks/user_install.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/tasks/yum_build_depends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/tasks/yum_build_depends.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/templates/rbenv_system.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/templates/rbenv_system.sh.j2 -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/templates/rbenv_user.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/templates/rbenv_user.sh.j2 -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/test/integration/default/serverspec/rbenv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/test/integration/default/serverspec/rbenv_spec.rb -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/test/integration/helpers/serverspec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/test/integration/helpers/serverspec/spec_helper.rb -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/test/integration/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/test/integration/site.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/vars/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/vars/system.yml -------------------------------------------------------------------------------- /.ansible/roles/zzet.rbenv/vars/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/roles/zzet.rbenv/vars/user.yml -------------------------------------------------------------------------------- /.ansible/templates/dkim/keys/azbuker.ru/mail.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/templates/dkim/keys/azbuker.ru/mail.private -------------------------------------------------------------------------------- /.ansible/templates/dkim/keys/azbuker.ru/mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/templates/dkim/keys/azbuker.ru/mail.txt -------------------------------------------------------------------------------- /.ansible/templates/nginx/app_virtualhost.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.ansible/templates/nginx/app_virtualhost.conf.j2 -------------------------------------------------------------------------------- /.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.example.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.10 2 | -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/Guardfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/README_en.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/Rakefile -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/ansible.cfg -------------------------------------------------------------------------------- /app/admin/authors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/admin/authors.rb -------------------------------------------------------------------------------- /app/admin/books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/admin/books.rb -------------------------------------------------------------------------------- /app/admin/dashboards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/admin/dashboards.rb -------------------------------------------------------------------------------- /app/admin/lots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/admin/lots.rb -------------------------------------------------------------------------------- /app/admin/oz_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/admin/oz_books.rb -------------------------------------------------------------------------------- /app/admin/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/admin/users.rb -------------------------------------------------------------------------------- /app/assets/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/images/blank.gif -------------------------------------------------------------------------------- /app/assets/images/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/images/fancybox_loading.gif -------------------------------------------------------------------------------- /app/assets/images/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/images/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /app/assets/images/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/images/fancybox_overlay.png -------------------------------------------------------------------------------- /app/assets/images/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/images/fancybox_sprite.png -------------------------------------------------------------------------------- /app/assets/images/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/images/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js: -------------------------------------------------------------------------------- 1 | //= require active_admin/base 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/books.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-alerts.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-buttons.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-dropdown.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-popover.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-tabs.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap-twipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/bootstrap-twipsy.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery-migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/jquery-migrate.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.typewatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/jquery.typewatch.js -------------------------------------------------------------------------------- /app/assets/javascripts/lots.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/lots.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/stpages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/javascripts/stpages.js -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/active_admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /app/assets/stylesheets/elements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/elements.css -------------------------------------------------------------------------------- /app/assets/stylesheets/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/jquery.fancybox.css -------------------------------------------------------------------------------- /app/assets/stylesheets/lots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/lots.css -------------------------------------------------------------------------------- /app/assets/stylesheets/override_forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/override_forms.css -------------------------------------------------------------------------------- /app/assets/stylesheets/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/assets/stylesheets/overrides.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/books_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/controllers/books_controller.rb -------------------------------------------------------------------------------- /app/controllers/lots_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/controllers/lots_controller.rb -------------------------------------------------------------------------------- /app/controllers/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/controllers/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/send_letters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/controllers/send_letters_controller.rb -------------------------------------------------------------------------------- /app/controllers/stpages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/controllers/stpages_controller.rb -------------------------------------------------------------------------------- /app/form_builders/bootstrap_form_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/form_builders/bootstrap_form_builder.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/bootstrap_paginate_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/helpers/bootstrap_paginate_renderer.rb -------------------------------------------------------------------------------- /app/helpers/html_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/helpers/html_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/author.rb -------------------------------------------------------------------------------- /app/models/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/book.rb -------------------------------------------------------------------------------- /app/models/globals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/globals.rb -------------------------------------------------------------------------------- /app/models/lot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/lot.rb -------------------------------------------------------------------------------- /app/models/oz_book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/oz_book.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/models/user_message.rb -------------------------------------------------------------------------------- /app/tasks/book_retriever.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/tasks/book_retriever.rb -------------------------------------------------------------------------------- /app/views/books/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/books/search.html.erb -------------------------------------------------------------------------------- /app/views/books/suggest.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/books/suggest.js.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/_mail_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/mailer/_mail_footer.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/rega.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/registrations/rega.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/registrations/show.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_activatemail_link.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/shared/_activatemail_link.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_forgetpass_link.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/shared/_forgetpass_link.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_loginform.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/shared/_loginform.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_regform.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/shared/_regform.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_register_link.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/shared/_register_link.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/lots/author.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/author.html.erb -------------------------------------------------------------------------------- /app/views/lots/book.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/book.html.erb -------------------------------------------------------------------------------- /app/views/lots/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/edit.html.erb -------------------------------------------------------------------------------- /app/views/lots/genre.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/genre.html.erb -------------------------------------------------------------------------------- /app/views/lots/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/index.html.erb -------------------------------------------------------------------------------- /app/views/lots/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/new.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_another_book.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_another_book.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_another_books.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_another_books.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_big_book.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_big_book.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_big_book4.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_big_book4.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_big_lot_cover.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_big_lot_cover.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_book_suggest.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_book_suggest.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_bread_crumb.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_bread_crumb.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_captcha_block.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_captcha_block.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_form.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_lot_pair.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_lot_pair.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_micro_lot.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_micro_lot.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_open_closed_pills.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_open_closed_pills.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_ozon_partner_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_ozon_partner_link.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_sendabuse_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_sendabuse_form.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_sendmsg_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_sendmsg_form.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_serp_book.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_serp_book.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_serp_books.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_serp_books.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_share_buttons_left.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_share_buttons_left.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_sim_lots.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_sim_lots.html.erb -------------------------------------------------------------------------------- /app/views/lots/parts/_similar_lot.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/parts/_similar_lot.html.erb -------------------------------------------------------------------------------- /app/views/lots/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/lots/show.html.erb -------------------------------------------------------------------------------- /app/views/send_letters/abuse.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/send_letters/abuse.js.erb -------------------------------------------------------------------------------- /app/views/send_letters/message.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/send_letters/message.js.erb -------------------------------------------------------------------------------- /app/views/send_letters/success.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/send_letters/success.js.erb -------------------------------------------------------------------------------- /app/views/stpages/error_404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/stpages/error_404.html.erb -------------------------------------------------------------------------------- /app/views/stpages/error_500.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/stpages/error_500.html.erb -------------------------------------------------------------------------------- /app/views/stpages/howitworks.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/stpages/howitworks.erb -------------------------------------------------------------------------------- /app/views/stpages/terms.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/stpages/terms.erb -------------------------------------------------------------------------------- /app/views/stpages/why.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/stpages/why.erb -------------------------------------------------------------------------------- /app/views/user_mailer/abuse.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/user_mailer/abuse.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/msg.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/user_mailer/msg.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/welcome_alert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/app/views/user_mailer/welcome_alert.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/database.example.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/kaminari.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/paperclip_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/paperclip_ext.rb -------------------------------------------------------------------------------- /config/initializers/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/recaptcha.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/will_paginate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/will_paginate.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/active_admin.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/locales/active_admin.en.yml -------------------------------------------------------------------------------- /config/locales/active_admin.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/locales/active_admin.ru.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/devise.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/locales/devise.ru.yml -------------------------------------------------------------------------------- /config/locales/en_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/locales/en_custom.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/ru_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/locales/ru_custom.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /db/migrate/20111227163009_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20111227163009_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20120108162833_add_nik_skype_phone_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120108162833_add_nik_skype_phone_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20120117143222_create_authors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120117143222_create_authors.rb -------------------------------------------------------------------------------- /db/migrate/20120122185045_create_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120122185045_create_books.rb -------------------------------------------------------------------------------- /db/migrate/20120122185229_authors_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120122185229_authors_books.rb -------------------------------------------------------------------------------- /db/migrate/20120124161034_create_lots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120124161034_create_lots.rb -------------------------------------------------------------------------------- /db/migrate/20120630135901_add_search_index_to_books_authors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120630135901_add_search_index_to_books_authors.rb -------------------------------------------------------------------------------- /db/migrate/20120708164433_create_oz_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120708164433_create_oz_books.rb -------------------------------------------------------------------------------- /db/migrate/20120710094227_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120710094227_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20120715123926_add_indexes_to_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120715123926_add_indexes_to_books.rb -------------------------------------------------------------------------------- /db/migrate/20120719155712_create_admin_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120719155712_create_admin_notes.rb -------------------------------------------------------------------------------- /db/migrate/20120719155713_move_admin_notes_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/migrate/20120719155713_move_admin_notes_to_comments.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/db/structure.sql -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /guard_debug.sh: -------------------------------------------------------------------------------- 1 | bundle exec guard -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/azb_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/azb_utils.rb -------------------------------------------------------------------------------- /lib/custom_devise_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/custom_devise_failure.rb -------------------------------------------------------------------------------- /lib/ozon_book_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/ozon_book_parser.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/db_ops.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/tasks/db_ops.rake -------------------------------------------------------------------------------- /lib/tasks/debug.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/tasks/debug.rake -------------------------------------------------------------------------------- /lib/tasks/pgdump_fix.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/tasks/pgdump_fix.rake -------------------------------------------------------------------------------- /lib/tasks/sample_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/tasks/sample_data.rake -------------------------------------------------------------------------------- /lib/tasks/tmp_cleanup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/lib/tasks/tmp_cleanup.rake -------------------------------------------------------------------------------- /ozbooks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/ozbooks.zip -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/422.html -------------------------------------------------------------------------------- /public/_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/_404.html -------------------------------------------------------------------------------- /public/_500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/_500.html -------------------------------------------------------------------------------- /public/covers/missing_original.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_original.gif -------------------------------------------------------------------------------- /public/covers/missing_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_original.png -------------------------------------------------------------------------------- /public/covers/missing_x120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_x120.gif -------------------------------------------------------------------------------- /public/covers/missing_x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_x120.png -------------------------------------------------------------------------------- /public/covers/missing_x200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_x200.gif -------------------------------------------------------------------------------- /public/covers/missing_x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_x200.png -------------------------------------------------------------------------------- /public/covers/missing_x300.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_x300.gif -------------------------------------------------------------------------------- /public/covers/missing_x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/covers/missing_x300.png -------------------------------------------------------------------------------- /public/d957c740b68c99460027ce00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/d957c740b68c99460027ce00.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/ico/azbuker-apple-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/ico/azbuker-apple-114x114.png -------------------------------------------------------------------------------- /public/ico/azbuker-apple-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/ico/azbuker-apple-57x57.png -------------------------------------------------------------------------------- /public/ico/azbuker-apple-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/ico/azbuker-apple-72x72.png -------------------------------------------------------------------------------- /public/ico/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/ico/favicon.gif -------------------------------------------------------------------------------- /public/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/ico/favicon.ico -------------------------------------------------------------------------------- /public/img/assets/book/1_120max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/1_120max.jpg -------------------------------------------------------------------------------- /public/img/assets/book/1_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/1_200.jpg -------------------------------------------------------------------------------- /public/img/assets/book/1_200max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/1_200max.jpg -------------------------------------------------------------------------------- /public/img/assets/book/2_120max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/2_120max.jpg -------------------------------------------------------------------------------- /public/img/assets/book/2_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/2_200.jpg -------------------------------------------------------------------------------- /public/img/assets/book/2_200max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/2_200max.jpg -------------------------------------------------------------------------------- /public/img/assets/book/3_120max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/3_120max.jpg -------------------------------------------------------------------------------- /public/img/assets/book/3_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/3_200.jpg -------------------------------------------------------------------------------- /public/img/assets/book/3_200max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/3_200max.jpg -------------------------------------------------------------------------------- /public/img/assets/book/4_120max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/4_120max.jpg -------------------------------------------------------------------------------- /public/img/assets/book/4_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/4_200.jpg -------------------------------------------------------------------------------- /public/img/assets/book/4_200max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/assets/book/4_200max.jpg -------------------------------------------------------------------------------- /public/img/bg-noise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/bg-noise.gif -------------------------------------------------------------------------------- /public/img/browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/browsers.png -------------------------------------------------------------------------------- /public/img/grid-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/grid-18px.png -------------------------------------------------------------------------------- /public/img/ico/fail_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/fail_icon.png -------------------------------------------------------------------------------- /public/img/ico/ico_facebook_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/ico_facebook_mini.png -------------------------------------------------------------------------------- /public/img/ico/ico_skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/ico_skype.png -------------------------------------------------------------------------------- /public/img/ico/ico_twitter_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/ico_twitter_mini.png -------------------------------------------------------------------------------- /public/img/ico/success_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/success_icon.png -------------------------------------------------------------------------------- /public/img/ico/vaga/_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/vaga/_mail.png -------------------------------------------------------------------------------- /public/img/ico/vaga/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/vaga/error.png -------------------------------------------------------------------------------- /public/img/ico/vaga/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/vaga/help.png -------------------------------------------------------------------------------- /public/img/ico/vaga/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/vaga/mail.png -------------------------------------------------------------------------------- /public/img/ico/vaga/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/vaga/mobile.png -------------------------------------------------------------------------------- /public/img/ico/vaga/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/vaga/user.png -------------------------------------------------------------------------------- /public/img/ico/vaga/user_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/ico/vaga/user_edit.png -------------------------------------------------------------------------------- /public/img/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/img/noise.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/system/ozbooks/counter.txt: -------------------------------------------------------------------------------- 1 | 3698363 2 | -------------------------------------------------------------------------------- /public/system/paperclip_attachments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/public/system/paperclip_attachments.yml -------------------------------------------------------------------------------- /public/yandex_529398f9aacefb51.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/books_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/controllers/books_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/lots_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/controllers/lots_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/lots_indexes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/controllers/lots_indexes_spec.rb -------------------------------------------------------------------------------- /spec/controllers/registrations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/controllers/registrations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/send_letters_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/controllers/send_letters_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/stpages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/controllers/stpages_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/author_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/factories/author_factory.rb -------------------------------------------------------------------------------- /spec/factories/book_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/factories/book_factory.rb -------------------------------------------------------------------------------- /spec/factories/lot_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/factories/lot_factory.rb -------------------------------------------------------------------------------- /spec/factories/oz_book_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/factories/oz_book_factory.rb -------------------------------------------------------------------------------- /spec/factories/user_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/factories/user_factory.rb -------------------------------------------------------------------------------- /spec/fixtures/almost_huge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/fixtures/almost_huge.jpg -------------------------------------------------------------------------------- /spec/fixtures/huge_picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/fixtures/huge_picture.jpg -------------------------------------------------------------------------------- /spec/fixtures/minimal_dimensions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/fixtures/minimal_dimensions.gif -------------------------------------------------------------------------------- /spec/fixtures/no_resize_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/fixtures/no_resize_original.png -------------------------------------------------------------------------------- /spec/fixtures/too_small_dimensions.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/fixtures/too_small_dimensions.tiff -------------------------------------------------------------------------------- /spec/lots_populator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/lots_populator.rb -------------------------------------------------------------------------------- /spec/models/author_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/models/author_spec.rb -------------------------------------------------------------------------------- /spec/models/book_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/models/book_spec.rb -------------------------------------------------------------------------------- /spec/models/lot_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/models/lot_spec.rb -------------------------------------------------------------------------------- /spec/models/oz_book_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/models/oz_book_spec.rb -------------------------------------------------------------------------------- /spec/models/show_lots_box_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/models/show_lots_box_spec.rb -------------------------------------------------------------------------------- /spec/models/user_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/models/user_message_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/requests/lots_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/requests/lots_spec.rb -------------------------------------------------------------------------------- /spec/requests/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/requests/users_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/database_preparation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/azbuker/HEAD/spec/support/database_preparation.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------