From d6ff9fe367016e9e68ac53114fcebdcbd6da4b0e Mon Sep 17 00:00:00 2001 From: kenna-bmcdevitt Date: Wed, 21 Aug 2024 10:30:18 -0500 Subject: [PATCH] more updates --- Dockerfile | 1 + Gemfile | 2 +- Gemfile.lock | 2 +- config/environments/development.rb | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a9fb05e..fd32d50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ RUN apt-get update -qq && apt-get install -y nodejs postgresql-client less bzip2 WORKDIR /data_importer COPY Gemfile /data_importer/Gemfile #COPY Gemfile.lock /data_importer/Gemfile.lock +RUN bundle update RUN bundle install ENV PAGER=less diff --git a/Gemfile b/Gemfile index cff8948..a5baae4 100644 --- a/Gemfile +++ b/Gemfile @@ -22,6 +22,7 @@ gem 'sass-rails' gem 'tweetkit', github: 'julianfssen/tweetkit' # for twitter v2 api support gem 'twitter' gem 'mime-types-data', '~> 3.2024.0820' +gem 'listen', '3.0.8' # Use postgres as the database for Active Record gem 'bulk_insert' gem 'git' @@ -67,7 +68,6 @@ end group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. - gem 'listen', '< 3.2' gem 'web-console', '>= 3.3.0' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' diff --git a/Gemfile.lock b/Gemfile.lock index 93433ea..0aad24b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -403,7 +403,7 @@ DEPENDENCIES graphql graphql-client jbuilder (~> 2.5) - listen (< 3.2) + listen (= 3.0.8) mime-types-data (~> 3.2024.0820) nokogiri pg diff --git a/config/environments/development.rb b/config/environments/development.rb index 33c8acf..12ff6ac 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -59,5 +59,5 @@ Rails.application.configure do # Use an evented file watcher to asynchronously detect changes in source code, # routes, locales, etc. This feature depends on the listen gem. - config.file_watcher = ActiveSupport::EventedFileUpdateChecker + #config.file_watcher = ActiveSupport::EventedFileUpdateChecker end