Removes ActiveSupport as a dependency

This commit is contained in:
Brusk Awat 2022-12-01 21:47:02 +03:00
parent 9775dc45a0
commit 882433cbff
Signed by: broosk1993
GPG Key ID: 5D20F7E02649F74E
2 changed files with 2 additions and 16 deletions

View File

@ -1,31 +1,21 @@
PATH PATH
remote: . remote: .
specs: specs:
rabbit_carrots (0.1.11) rabbit_carrots (0.1.12)
activesupport (>= 6.0.0)
bunny (>= 2.19.0) bunny (>= 2.19.0)
connection_pool (~> 2.3.0) connection_pool (~> 2.3.0)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: 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) amq-protocol (2.3.2)
ast (2.4.2) ast (2.4.2)
bunny (2.19.0) bunny (2.19.0)
amq-protocol (~> 2.3, >= 2.3.1) amq-protocol (~> 2.3, >= 2.3.1)
sorted_set (~> 1, >= 1.0.2) sorted_set (~> 1, >= 1.0.2)
concurrent-ruby (1.1.10)
connection_pool (2.3.0) connection_pool (2.3.0)
diff-lcs (1.5.0) diff-lcs (1.5.0)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
json (2.6.2) json (2.6.2)
minitest (5.16.3)
parallel (1.22.1) parallel (1.22.1)
parser (3.1.2.1) parser (3.1.2.1)
ast (~> 2.4.1) ast (~> 2.4.1)
@ -64,8 +54,6 @@ GEM
sorted_set (1.0.3) sorted_set (1.0.3)
rbtree rbtree
set (~> 1.0) set (~> 1.0)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
unicode-display_width (2.3.0) unicode-display_width (2.3.0)
PLATFORMS PLATFORMS

View File

@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
spec.license = "MIT" spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0" 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["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/ditkrg/rabbit_carrots" 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 # Uncomment to register a new dependency of your gem
spec.add_dependency "bunny", ">= 2.19.0" spec.add_dependency "bunny", ">= 2.19.0"
spec.add_dependency "connection_pool", "~> 2.3.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 # For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html # guide at: https://bundler.io/guides/creating_gem.html