From 882433cbffdda5cc11c88e7c6cefe8900adc26f4 Mon Sep 17 00:00:00 2001 From: Brusk Awat Date: Thu, 1 Dec 2022 21:47:02 +0300 Subject: [PATCH] Removes ActiveSupport as a dependency --- Gemfile.lock | 14 +------------- rabbit_carrots.gemspec | 4 +--- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 71b6b94..ab73aaf 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,31 +1,21 @@ PATH remote: . specs: - rabbit_carrots (0.1.11) - activesupport (>= 6.0.0) + rabbit_carrots (0.1.12) bunny (>= 2.19.0) connection_pool (~> 2.3.0) GEM remote: https://rubygems.org/ specs: - activesupport (7.0.4) - concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 1.6, < 2) - minitest (>= 5.1) - tzinfo (~> 2.0) amq-protocol (2.3.2) ast (2.4.2) bunny (2.19.0) amq-protocol (~> 2.3, >= 2.3.1) sorted_set (~> 1, >= 1.0.2) - concurrent-ruby (1.1.10) connection_pool (2.3.0) diff-lcs (1.5.0) - i18n (1.12.0) - concurrent-ruby (~> 1.0) json (2.6.2) - minitest (5.16.3) parallel (1.22.1) parser (3.1.2.1) ast (~> 2.4.1) @@ -64,8 +54,6 @@ GEM sorted_set (1.0.3) rbtree set (~> 1.0) - tzinfo (2.0.5) - concurrent-ruby (~> 1.0) unicode-display_width (2.3.0) PLATFORMS diff --git a/rabbit_carrots.gemspec b/rabbit_carrots.gemspec index 33a6a13..755f10b 100644 --- a/rabbit_carrots.gemspec +++ b/rabbit_carrots.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |spec| spec.license = "MIT" spec.required_ruby_version = ">= 3.1.0" - spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'" + spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/ditkrg/rabbit_carrots" @@ -34,8 +34,6 @@ Gem::Specification.new do |spec| # Uncomment to register a new dependency of your gem spec.add_dependency "bunny", ">= 2.19.0" spec.add_dependency "connection_pool", "~> 2.3.0" - spec.add_dependency "activesupport", ">= 6.0.0" - # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html