From c7ff64f1431062387e994bce319ebf7039e1c3f1 Mon Sep 17 00:00:00 2001 From: Felix Eckhofer <felix@eckhofer.com> Date: Fri, 3 Jan 2025 15:45:43 +0100 Subject: [PATCH] Enable renovate --- Gemfile | 6 +++--- Gemfile.lock | 6 +++--- renovate.json | 3 +++ 3 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 renovate.json diff --git a/Gemfile b/Gemfile index 7a906f6..627bf93 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,7 @@ ruby "3.3.6" gem "rails", "~> 8.0.1" # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] -gem "sprockets-rails" +gem "sprockets-rails", "> 0" # Use sqlite3 as the database for Active Record gem "sqlite3", "~> 2.5" @@ -29,7 +29,7 @@ end group :development do # Use console on exceptions pages [https://github.com/rails/web-console] - gem "web-console" + gem "web-console", "> 0" # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler] # gem "rack-mini-profiler" @@ -46,7 +46,7 @@ end gem "solid_queue", "~> 1.1" -gem "httparty" +gem "httparty", "> 0" gem "tailwindcss-rails", "~> 3.1" diff --git a/Gemfile.lock b/Gemfile.lock index c50af60..4cc6dc4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -340,7 +340,7 @@ DEPENDENCIES debug devise (~> 4.9) hotwire-rails (~> 0.1.3) - httparty + httparty (> 0) icalendar (~> 2.10) importmap-rails (~> 2.0) puma (>= 5.0) @@ -348,12 +348,12 @@ DEPENDENCIES redis (>= 4.0.1) selenium-webdriver solid_queue (~> 1.1) - sprockets-rails + sprockets-rails (> 0) sqlite3 (~> 2.5) tailwindcss-rails (~> 3.1) telegram-bot-ruby (~> 2.0) tzinfo-data - web-console + web-console (> 0) RUBY VERSION ruby 3.3.6p108 diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..d1964a0 --- /dev/null +++ b/renovate.json @@ -0,0 +1,3 @@ +{ + "extends": ["config:recommended", "group:rubyOnRails"] +} -- GitLab