From 52638630fa886005dc6f2759f8c8a4ec4dc81a4d Mon Sep 17 00:00:00 2001 From: Attila Domokos Date: Fri, 25 Oct 2024 23:02:17 -0500 Subject: [PATCH] Add back activesupport We are not ready to remove it. There are instances of `blank?` and `singularize` that are used in the code. Removing `activesupport` still not fails any of the tests, as we have `generator_spec` that uses and installs `activesupport`. --- README.md | 2 -- light-service.gemspec | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eff4f269..a9a6ce07 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,6 @@ LightService is a powerful and flexible service skeleton framework with an emphasis on simplicity -🔥 **It now comes with no external gem dependency.** 🔥 - ## Table of Contents - [Table of Contents](#table-of-contents) - [Why LightService?](#why-lightservice) diff --git a/light-service.gemspec b/light-service.gemspec index d7b81f64..452a6dcc 100644 --- a/light-service.gemspec +++ b/light-service.gemspec @@ -17,6 +17,8 @@ Gem::Specification.new do |gem| gem.version = LightService::VERSION gem.required_ruby_version = '>= 2.6.0' + gem.add_dependency("activesupport", "~> 7.0") # We still need this + gem.add_development_dependency("generator_spec", "~> 0.9.4") gem.add_development_dependency("test-unit", "~> 3.0") # Needed for generator specs. gem.add_development_dependency("rspec", "~> 3.0")