├── .circleci └── config.yml ├── .env.example ├── .gitattributes ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ └── application.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── crawlers_controller.rb │ ├── exporter_controller.rb │ ├── feedbacks_controller.rb │ ├── privacy_policy_controller.rb │ ├── status_controller.rb │ └── terms_and_conditions_controller.rb ├── helpers │ └── application_helper.rb ├── javascript │ ├── application.js │ ├── controllers │ │ ├── application.js │ │ ├── hello_controller.js │ │ └── index.js │ └── lib │ │ ├── feedback.js │ │ ├── import-status.js │ │ ├── login.js │ │ └── rest-client.js ├── jobs │ ├── application_job.rb │ └── skoob_importer_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── exporter.rb │ ├── invalid_credentials_error.rb │ ├── publication.rb │ ├── publications.rb │ ├── skoob.rb │ ├── skoob_urls.rb │ ├── skoob_user.rb │ └── slack │ │ └── message.rb └── views │ ├── crawlers │ ├── _imported.html.erb │ ├── _importing.html.erb │ ├── _importing_card.html.erb │ ├── _table_card.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── privacy_policy │ └── index.html.md │ ├── shared │ └── _feedback.html.erb │ └── terms_and_conditions │ └── index.html.md ├── bin ├── bundle ├── deploy ├── importmap ├── rails ├── rake ├── rspec ├── setup └── sidekiq ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── importmap.rb ├── initializers │ ├── assets.rb │ ├── content_security_policy.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── markdown.rb │ ├── permissions_policy.rb │ ├── redis.rb │ └── sidekiq.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── sidekiq.yml └── storage.yml ├── db ├── migrate │ ├── 20170114204025_create_book.rb │ ├── 20170114205031_create_skoob_user.rb │ ├── 20170115182558_add_books_count_to_skoob_user.rb │ ├── 20230626210444_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20230626210445_create_active_storage_variant_records.active_storage.rb │ ├── 20230626210446_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb │ ├── 20230707194634_add_timestamps_to_books.rb │ ├── 20230711112832_rename_books_count_to_publications_count_in_skoob_users.rb │ ├── 20230711112942_rename_books_to_publications.rb │ ├── 20230711113040_rename_skoob_book_id_to_skoob_publication_id_in_publications.rb │ ├── 20230711123057_add_publication_type_to_publications.rb │ ├── 20230715215102_add_read_date_and_rating_to_publications.rb │ └── 20231023112542_add_subtitle_to_publication.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── lib ├── assets │ └── .keep ├── handlers │ └── markdown_handler.rb └── tasks │ ├── .keep │ ├── cleanup.rake │ └── skoob.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── book-loading.gif ├── comments-icon.svg ├── done.svg ├── favicon.ico └── robots.txt ├── spec ├── factories │ ├── publications.rb │ └── skoob_users.rb ├── models │ ├── exporter_spec.rb │ ├── publication_spec.rb │ ├── publications_spec.rb │ ├── skoob_spec.rb │ ├── skoob_urls_spec.rb │ ├── skoob_user_spec.rb │ └── slack │ │ └── message_spec.rb ├── rails_helper.rb ├── spec_helper.rb └── support │ └── factory_bot.rb └── tmp └── .keep /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require rails_helper 2 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | skoob -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.2.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/crawlers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/controllers/crawlers_controller.rb -------------------------------------------------------------------------------- /app/controllers/exporter_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/controllers/exporter_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/controllers/feedbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/privacy_policy_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/controllers/privacy_policy_controller.rb -------------------------------------------------------------------------------- /app/controllers/status_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/controllers/status_controller.rb -------------------------------------------------------------------------------- /app/controllers/terms_and_conditions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/controllers/terms_and_conditions_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/lib/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/lib/feedback.js -------------------------------------------------------------------------------- /app/javascript/lib/import-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/lib/import-status.js -------------------------------------------------------------------------------- /app/javascript/lib/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/lib/login.js -------------------------------------------------------------------------------- /app/javascript/lib/rest-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/javascript/lib/rest-client.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/skoob_importer_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/jobs/skoob_importer_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/exporter.rb -------------------------------------------------------------------------------- /app/models/invalid_credentials_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/invalid_credentials_error.rb -------------------------------------------------------------------------------- /app/models/publication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/publication.rb -------------------------------------------------------------------------------- /app/models/publications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/publications.rb -------------------------------------------------------------------------------- /app/models/skoob.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/skoob.rb -------------------------------------------------------------------------------- /app/models/skoob_urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/skoob_urls.rb -------------------------------------------------------------------------------- /app/models/skoob_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/skoob_user.rb -------------------------------------------------------------------------------- /app/models/slack/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/models/slack/message.rb -------------------------------------------------------------------------------- /app/views/crawlers/_imported.html.erb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/views/crawlers/_importing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/crawlers/_importing.html.erb -------------------------------------------------------------------------------- /app/views/crawlers/_importing_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/crawlers/_importing_card.html.erb -------------------------------------------------------------------------------- /app/views/crawlers/_table_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/crawlers/_table_card.html.erb -------------------------------------------------------------------------------- /app/views/crawlers/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/crawlers/index.html.erb -------------------------------------------------------------------------------- /app/views/crawlers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/crawlers/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/privacy_policy/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/privacy_policy/index.html.md -------------------------------------------------------------------------------- /app/views/shared/_feedback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/shared/_feedback.html.erb -------------------------------------------------------------------------------- /app/views/terms_and_conditions/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/app/views/terms_and_conditions/index.html.md -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/bin/deploy -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/sidekiq: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | bundle exec sidekiq 4 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/markdown.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- 1 | --- 2 | production: 3 | :concurrency: 1 4 | -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20170114204025_create_book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20170114204025_create_book.rb -------------------------------------------------------------------------------- /db/migrate/20170114205031_create_skoob_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20170114205031_create_skoob_user.rb -------------------------------------------------------------------------------- /db/migrate/20170115182558_add_books_count_to_skoob_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20170115182558_add_books_count_to_skoob_user.rb -------------------------------------------------------------------------------- /db/migrate/20230626210444_add_service_name_to_active_storage_blobs.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230626210444_add_service_name_to_active_storage_blobs.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20230626210445_create_active_storage_variant_records.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230626210445_create_active_storage_variant_records.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20230626210446_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230626210446_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20230707194634_add_timestamps_to_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230707194634_add_timestamps_to_books.rb -------------------------------------------------------------------------------- /db/migrate/20230711112832_rename_books_count_to_publications_count_in_skoob_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230711112832_rename_books_count_to_publications_count_in_skoob_users.rb -------------------------------------------------------------------------------- /db/migrate/20230711112942_rename_books_to_publications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230711112942_rename_books_to_publications.rb -------------------------------------------------------------------------------- /db/migrate/20230711113040_rename_skoob_book_id_to_skoob_publication_id_in_publications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230711113040_rename_skoob_book_id_to_skoob_publication_id_in_publications.rb -------------------------------------------------------------------------------- /db/migrate/20230711123057_add_publication_type_to_publications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230711123057_add_publication_type_to_publications.rb -------------------------------------------------------------------------------- /db/migrate/20230715215102_add_read_date_and_rating_to_publications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20230715215102_add_read_date_and_rating_to_publications.rb -------------------------------------------------------------------------------- /db/migrate/20231023112542_add_subtitle_to_publication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/migrate/20231023112542_add_subtitle_to_publication.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/handlers/markdown_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/lib/handlers/markdown_handler.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/cleanup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/lib/tasks/cleanup.rake -------------------------------------------------------------------------------- /lib/tasks/skoob.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/lib/tasks/skoob.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/book-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/book-loading.gif -------------------------------------------------------------------------------- /public/comments-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/comments-icon.svg -------------------------------------------------------------------------------- /public/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/done.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/factories/publications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/factories/publications.rb -------------------------------------------------------------------------------- /spec/factories/skoob_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/factories/skoob_users.rb -------------------------------------------------------------------------------- /spec/models/exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/models/exporter_spec.rb -------------------------------------------------------------------------------- /spec/models/publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/models/publication_spec.rb -------------------------------------------------------------------------------- /spec/models/publications_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/models/publications_spec.rb -------------------------------------------------------------------------------- /spec/models/skoob_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/models/skoob_spec.rb -------------------------------------------------------------------------------- /spec/models/skoob_urls_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/models/skoob_urls_spec.rb -------------------------------------------------------------------------------- /spec/models/skoob_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/models/skoob_user_spec.rb -------------------------------------------------------------------------------- /spec/models/slack/message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/models/slack/message_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturcp/skoob-exporter/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------