├── .babelrc ├── .gitignore ├── .postcssrc.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── _Procfile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── banner_01.jpg │ │ ├── banner_02.jpg │ │ ├── banner_03.jpg │ │ ├── banner_04.jpg │ │ ├── cluster-pin.svg │ │ ├── logo.png │ │ ├── map-marker-black.png │ │ ├── map-marker-red.png │ │ └── svg │ │ │ ├── chevron_left.svg │ │ │ └── chevron_right.svg │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ └── channels │ │ │ └── .keep │ └── stylesheets │ │ ├── README.md │ │ ├── application.scss │ │ ├── components │ │ ├── _alert.scss │ │ ├── _banner.scss │ │ ├── _buttons.scss │ │ ├── _devise.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _index.scss │ │ ├── _maps.scss │ │ ├── _modals.scss │ │ ├── _navbar.scss │ │ ├── _pub.scss │ │ ├── _pubs_show.scss │ │ ├── _search.scss │ │ └── _slider.scss │ │ ├── config │ │ ├── _bootstrap_variables.scss │ │ ├── _colors.scss │ │ ├── _fonts.scss │ │ └── _mixins.scss │ │ ├── layouts │ │ ├── _authentication.scss │ │ └── _index.scss │ │ └── pages │ │ ├── _home.scss │ │ └── _index.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── crawls_controller.rb │ ├── favorite_crawls_controller.rb │ ├── favorite_pubs_controller.rb │ ├── pages_controller.rb │ ├── pubs_controller.rb │ └── users │ │ ├── confirmations_controller.rb │ │ ├── omniauth_callbacks_controller.rb │ │ ├── passwords_controller.rb │ │ ├── registrations_controller.rb │ │ ├── sessions_controller.rb │ │ └── unlocks_controller.rb ├── helpers │ └── application_helper.rb ├── javascript │ ├── components │ │ ├── autocomplete.js │ │ ├── crawl.js │ │ ├── crawls_form.js │ │ ├── home.js │ │ ├── map.js │ │ ├── mapbox.js │ │ ├── marker.js │ │ ├── modals.js │ │ ├── navbar.js │ │ ├── pub.js │ │ └── styles.js │ ├── packs │ │ ├── application.css │ │ └── application.js │ └── styles │ │ └── flatpickr.css ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── crawl.rb │ ├── favorite.rb │ ├── pub.rb │ ├── pub_crawl.rb │ └── user.rb ├── policies │ ├── application_policy.rb │ ├── crawl_policy.rb │ └── pub_policy.rb └── views │ ├── crawls │ ├── _crawl.html.erb │ ├── _form.html.erb │ ├── _new.html.erb │ ├── create.html.erb │ ├── destroy.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── new.js.erb │ ├── show.html.erb │ └── update.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── email_changed.html.erb │ │ ├── password_change.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 │ │ └── new.js.erb │ ├── sessions │ │ ├── _new.html.erb │ │ ├── create.js.erb │ │ ├── new.html.erb │ │ └── new.js.erb │ ├── shared │ │ ├── _authentication.html.erb │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── layouts │ ├── application.html.erb │ ├── authentication.html.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ └── search.html.erb │ ├── pages │ └── home.html.erb │ ├── pubs │ ├── _form.html.erb │ ├── _map_box.html.erb │ ├── _new.html.erb │ ├── _pub.html.erb │ ├── _pub.json.jbuilder │ ├── _show.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── new.js.erb │ ├── show.html.erb │ ├── show.js.erb │ └── show.json.jbuilder │ └── shared │ ├── _banner.html.erb │ ├── _footer.html.erb │ ├── _modal.html.erb │ └── _navbar.html.erb ├── bin ├── bundle ├── figaro ├── rails ├── rake ├── setup ├── spring ├── update ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── geocoder.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.yml │ └── simple_form.en.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── spring.rb ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20180228090553_create_pubs.rb │ ├── 20180228090745_add_coordinates_to_pub.rb │ ├── 20180321153643_add_attributes_to_pubs.rb │ ├── 20180321210335_add_district_to_pubs.rb │ ├── 20180322012013_devise_create_users.rb │ ├── 20180322013528_create_favorites.rb │ ├── 20180322235855_add_admin_to_users.rb │ ├── 20180323150644_create_crawls.rb │ ├── 20180323150808_create_pub_crawls.rb │ ├── 20180323164957_add_dates_to_crawls.rb │ └── 20180324122950_change_date_type_for_description_in_pubs.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── tasks │ └── .keep └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ ├── crawls_controller_test.rb │ ├── favorites_controller_test.rb │ ├── pages_controller_test.rb │ └── pubs_controller_test.rb ├── fixtures │ ├── .keep │ ├── crawls.yml │ ├── favorites.yml │ ├── files │ │ └── .keep │ ├── pub_crawls.yml │ ├── pubs.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── crawl_test.rb │ ├── favorite_test.rb │ ├── pub_crawl_test.rb │ ├── pub_test.rb │ └── user_test.rb ├── policies │ └── pub_policy_test.rb ├── system │ ├── .keep │ └── pubs_test.rb └── test_helper.rb ├── tmp └── .keep ├── yarn-error.log └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/.postcssrc.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.3 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/Rakefile -------------------------------------------------------------------------------- /_Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/_Procfile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/banner_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/banner_01.jpg -------------------------------------------------------------------------------- /app/assets/images/banner_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/banner_02.jpg -------------------------------------------------------------------------------- /app/assets/images/banner_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/banner_03.jpg -------------------------------------------------------------------------------- /app/assets/images/banner_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/banner_04.jpg -------------------------------------------------------------------------------- /app/assets/images/cluster-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/cluster-pin.svg -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/map-marker-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/map-marker-black.png -------------------------------------------------------------------------------- /app/assets/images/map-marker-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/map-marker-red.png -------------------------------------------------------------------------------- /app/assets/images/svg/chevron_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/svg/chevron_left.svg -------------------------------------------------------------------------------- /app/assets/images/svg/chevron_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/images/svg/chevron_right.svg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/README.md -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_alert.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_banner.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_buttons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_devise.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_devise.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_maps.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_modals.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_navbar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_pub.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_pub.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_pubs_show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_pubs_show.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_search.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/components/_slider.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/config/_bootstrap_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/config/_bootstrap_variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/config/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/config/_colors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/config/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/config/_fonts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/config/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/config/_mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/_authentication.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/layouts/_authentication.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/layouts/_index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/pages/_home.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/assets/stylesheets/pages/_index.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/crawls_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/crawls_controller.rb -------------------------------------------------------------------------------- /app/controllers/favorite_crawls_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/favorite_crawls_controller.rb -------------------------------------------------------------------------------- /app/controllers/favorite_pubs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/favorite_pubs_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/pubs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/pubs_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/confirmations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/users/confirmations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/users/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/users/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/users/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/users/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/unlocks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/controllers/users/unlocks_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/javascript/components/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/autocomplete.js -------------------------------------------------------------------------------- /app/javascript/components/crawl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/crawl.js -------------------------------------------------------------------------------- /app/javascript/components/crawls_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/crawls_form.js -------------------------------------------------------------------------------- /app/javascript/components/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/home.js -------------------------------------------------------------------------------- /app/javascript/components/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/map.js -------------------------------------------------------------------------------- /app/javascript/components/mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/mapbox.js -------------------------------------------------------------------------------- /app/javascript/components/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/marker.js -------------------------------------------------------------------------------- /app/javascript/components/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/modals.js -------------------------------------------------------------------------------- /app/javascript/components/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/navbar.js -------------------------------------------------------------------------------- /app/javascript/components/pub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/pub.js -------------------------------------------------------------------------------- /app/javascript/components/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/components/styles.js -------------------------------------------------------------------------------- /app/javascript/packs/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/packs/application.css -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/styles/flatpickr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/javascript/styles/flatpickr.css -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/crawl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/models/crawl.rb -------------------------------------------------------------------------------- /app/models/favorite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/models/favorite.rb -------------------------------------------------------------------------------- /app/models/pub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/models/pub.rb -------------------------------------------------------------------------------- /app/models/pub_crawl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/models/pub_crawl.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/crawl_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/policies/crawl_policy.rb -------------------------------------------------------------------------------- /app/policies/pub_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/policies/pub_policy.rb -------------------------------------------------------------------------------- /app/views/crawls/_crawl.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/_crawl.html.erb -------------------------------------------------------------------------------- /app/views/crawls/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/_form.html.erb -------------------------------------------------------------------------------- /app/views/crawls/_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/_new.html.erb -------------------------------------------------------------------------------- /app/views/crawls/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/create.html.erb -------------------------------------------------------------------------------- /app/views/crawls/destroy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/destroy.html.erb -------------------------------------------------------------------------------- /app/views/crawls/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/edit.html.erb -------------------------------------------------------------------------------- /app/views/crawls/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/index.html.erb -------------------------------------------------------------------------------- /app/views/crawls/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/new.html.erb -------------------------------------------------------------------------------- /app/views/crawls/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/new.js.erb -------------------------------------------------------------------------------- /app/views/crawls/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/show.html.erb -------------------------------------------------------------------------------- /app/views/crawls/update.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/crawls/update.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/email_changed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/mailer/email_changed.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/registrations/new.js.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/sessions/_new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/create.js.erb: -------------------------------------------------------------------------------- 1 | location.reload(); 2 | -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/sessions/new.js.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_authentication.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/shared/_authentication.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/authentication.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/layouts/authentication.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/layouts/search.html.erb -------------------------------------------------------------------------------- /app/views/pages/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pages/home.html.erb -------------------------------------------------------------------------------- /app/views/pubs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/_form.html.erb -------------------------------------------------------------------------------- /app/views/pubs/_map_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/_map_box.html.erb -------------------------------------------------------------------------------- /app/views/pubs/_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/_new.html.erb -------------------------------------------------------------------------------- /app/views/pubs/_pub.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/_pub.html.erb -------------------------------------------------------------------------------- /app/views/pubs/_pub.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/_pub.json.jbuilder -------------------------------------------------------------------------------- /app/views/pubs/_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/_show.html.erb -------------------------------------------------------------------------------- /app/views/pubs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/edit.html.erb -------------------------------------------------------------------------------- /app/views/pubs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/index.html.erb -------------------------------------------------------------------------------- /app/views/pubs/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/pubs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/new.html.erb -------------------------------------------------------------------------------- /app/views/pubs/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/new.js.erb -------------------------------------------------------------------------------- /app/views/pubs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/show.html.erb -------------------------------------------------------------------------------- /app/views/pubs/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/show.js.erb -------------------------------------------------------------------------------- /app/views/pubs/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/pubs/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/shared/_banner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/shared/_banner.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/shared/_footer.html.erb -------------------------------------------------------------------------------- /app/views/shared/_modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/shared/_modal.html.erb -------------------------------------------------------------------------------- /app/views/shared/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/app/views/shared/_navbar.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/figaro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/figaro -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/geocoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/geocoder.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20180228090553_create_pubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180228090553_create_pubs.rb -------------------------------------------------------------------------------- /db/migrate/20180228090745_add_coordinates_to_pub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180228090745_add_coordinates_to_pub.rb -------------------------------------------------------------------------------- /db/migrate/20180321153643_add_attributes_to_pubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180321153643_add_attributes_to_pubs.rb -------------------------------------------------------------------------------- /db/migrate/20180321210335_add_district_to_pubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180321210335_add_district_to_pubs.rb -------------------------------------------------------------------------------- /db/migrate/20180322012013_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180322012013_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20180322013528_create_favorites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180322013528_create_favorites.rb -------------------------------------------------------------------------------- /db/migrate/20180322235855_add_admin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180322235855_add_admin_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20180323150644_create_crawls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180323150644_create_crawls.rb -------------------------------------------------------------------------------- /db/migrate/20180323150808_create_pub_crawls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180323150808_create_pub_crawls.rb -------------------------------------------------------------------------------- /db/migrate/20180323164957_add_dates_to_crawls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180323164957_add_dates_to_crawls.rb -------------------------------------------------------------------------------- /db/migrate/20180324122950_change_date_type_for_description_in_pubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/migrate/20180324122950_change_date_type_for_description_in_pubs.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/crawls_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/controllers/crawls_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/favorites_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/controllers/favorites_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/controllers/pages_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/pubs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/controllers/pubs_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/crawls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/fixtures/crawls.yml -------------------------------------------------------------------------------- /test/fixtures/favorites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/fixtures/favorites.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/pub_crawls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/fixtures/pub_crawls.yml -------------------------------------------------------------------------------- /test/fixtures/pubs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/fixtures/pubs.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/crawl_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/models/crawl_test.rb -------------------------------------------------------------------------------- /test/models/favorite_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/models/favorite_test.rb -------------------------------------------------------------------------------- /test/models/pub_crawl_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/models/pub_crawl_test.rb -------------------------------------------------------------------------------- /test/models/pub_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/models/pub_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/policies/pub_policy_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/policies/pub_policy_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/pubs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/system/pubs_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodloboz/pubcrawler/HEAD/yarn.lock --------------------------------------------------------------------------------