diff --git a/Gemfile.lock b/Gemfile.lock index df6f110..1f48c53 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -82,7 +82,7 @@ GEM bindex (0.8.1) bootsnap (1.18.4) msgpack (~> 1.2) - brakeman (6.2.1) + brakeman (6.2.2) racc builder (3.3.0) capybara (3.40.0) @@ -115,10 +115,10 @@ GEM activesupport (>= 6.1) i18n (1.14.6) concurrent-ruby (~> 1.0) - image_processing (1.12.2) + image_processing (1.13.0) mini_magick (>= 4.9.5, < 5) ruby-vips (>= 2.0.17, < 3) - importmap-rails (2.0.1) + importmap-rails (2.0.3) actionpack (>= 6.0.0) activesupport (>= 6.0.0) railties (>= 6.0.0) @@ -126,10 +126,10 @@ GEM irb (1.14.1) rdoc (>= 4.0.0) reline (>= 0.4.2) - jbuilder (2.12.0) + jbuilder (2.13.0) actionview (>= 5.0.0) activesupport (>= 5.0.0) - json (2.7.2) + json (2.7.4) language_server-protocol (3.17.0.3) logger (1.6.1) loofah (2.23.1) @@ -142,7 +142,7 @@ GEM net-smtp marcel (1.0.4) matrix (0.4.2) - mini_magick (4.13.1) + mini_magick (4.13.2) mini_mime (1.1.5) minitest (5.25.1) msgpack (1.7.2) @@ -158,11 +158,9 @@ GEM nio4r (2.7.4) nokogiri (1.16.7-x64-mingw-ucrt) racc (~> 1.4) - nokogiri (1.16.7-x86_64-linux) - racc (~> 1.4) orm_adapter (0.5.0) parallel (1.26.3) - parser (3.3.4.2) + parser (3.3.5.0) ast (~> 2.4.1) racc pg (1.5.7) @@ -170,7 +168,7 @@ GEM psych (5.2.0) stringio public_suffix (6.0.1) - puma (6.4.2) + puma (6.4.3) nio4r (~> 2.0) racc (1.8.1) rack (3.1.8) @@ -219,27 +217,26 @@ GEM responders (3.1.1) actionpack (>= 5.2) railties (>= 5.2) - rexml (3.3.6) - strscan - rubocop (1.66.0) + rexml (3.3.9) + rubocop (1.67.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 2.4, < 3.0) - rubocop-ast (>= 1.32.1, < 2.0) + rubocop-ast (>= 1.32.2, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) + rubocop-ast (1.32.3) parser (>= 3.3.1.0) rubocop-minitest (0.36.0) rubocop (>= 1.61, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) - rubocop-performance (1.21.1) + rubocop-performance (1.22.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rails (2.26.0) + rubocop-rails (2.27.0) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.52.0, < 2.0) @@ -250,8 +247,9 @@ GEM rubocop-performance rubocop-rails ruby-progressbar (1.13.0) - ruby-vips (2.2.1) + ruby-vips (2.2.2) ffi (~> 1.12) + logger rubyzip (2.3.2) securerandom (0.3.2) selenium-webdriver (4.24.0) @@ -273,17 +271,16 @@ GEM strscan (3.1.0) tailwindcss-rails (2.7.3-x64-mingw-ucrt) railties (>= 7.0.0) - tailwindcss-rails (2.7.3-x86_64-linux) - railties (>= 7.0.0) + tailwindcss-ruby + tailwindcss-ruby (3.4.14-x64-mingw-ucrt) thor (1.3.2) timeout (0.4.2) turbo-rails (2.0.6) actionpack (>= 6.0.0) - activejob (>= 6.0.0) railties (>= 6.0.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - tzinfo-data (1.2024.1) + tzinfo-data (1.2024.2) tzinfo (>= 1.0.0) unicode-display_width (2.5.0) uri (1.0.2) @@ -305,7 +302,6 @@ GEM PLATFORMS x64-mingw-ucrt - x86_64-linux DEPENDENCIES bootsnap diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb index 30ac5cd..f8d5c26 100644 --- a/app/views/devise/sessions/new.html.erb +++ b/app/views/devise/sessions/new.html.erb @@ -23,6 +23,15 @@
<%= f.password_field :password, id: "password-field", autocomplete: "current-password", class:"block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-lime-600 sm:text-sm sm:leading-6 pr-10" %> + + +
diff --git a/config/database.yml b/config/database.yml index 36fba1b..251df34 100644 --- a/config/database.yml +++ b/config/database.yml @@ -2,10 +2,9 @@ default: &default adapter: postgresql encoding: unicode username: postgres - password: + password: Jam10Bi@ pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> - development: <<: *default database: rookie_coder_network_development diff --git a/config/environments/development.rb b/config/environments/development.rb index 54afb33..01d307b 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -20,7 +20,7 @@ # Enable/disable caching. By default caching is disabled. # Run rails dev:cache to toggle caching. if Rails.root.join("tmp/caching-dev.txt").exist? - config.action_controller.perform_caching = true + config.action_controller.perform_caching = false config.action_controller.enable_fragment_cache_logging = true config.cache_store = :memory_store @@ -36,15 +36,15 @@ # Don't care if the mailer can't send. config.action_mailer.raise_delivery_errors = false - + # Disable caching for Action Mailer templates even if Action Controller # caching is enabled. config.action_mailer.perform_caching = false - + config.action_mailer.default_url_options = { host: "localhost", port: 3000 } config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { - address: '127.0.0.1', + address: "127.0.0.1", port: 1025 }