From cc5e4efbb778bd60f453c6cbb8afda545aa80617 Mon Sep 17 00:00:00 2001 From: Nikita Shilnikov Date: Sat, 4 Jan 2025 12:24:17 +0100 Subject: [PATCH] Update deps --- .rubocop.yml | 2 +- dry-events.gemspec | 13 +++++++------ project.yml | 6 +----- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index e4a1c25..28762e5 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -11,7 +11,7 @@ AllCops: - spec/support/warnings.rb - spec/support/rspec_options.rb - Gemfile.devtools - - "*.gemspec" + "*.gemspec" Layout/SpaceAroundMethodCallOperator: Enabled: false diff --git a/dry-events.gemspec b/dry-events.gemspec index 9ae269f..0831c5d 100644 --- a/dry-events.gemspec +++ b/dry-events.gemspec @@ -21,14 +21,15 @@ Gem::Specification.new do |spec| spec.executables = [] spec.require_paths = ["lib"] - spec.metadata["allowed_push_host"] = "https://rubygems.org" - spec.metadata["changelog_uri"] = "https://github.com/dry-rb/dry-events/blob/main/CHANGELOG.md" - spec.metadata["source_code_uri"] = "https://github.com/dry-rb/dry-events" - spec.metadata["bug_tracker_uri"] = "https://github.com/dry-rb/dry-events/issues" + spec.metadata["allowed_push_host"] = "https://rubygems.org" + spec.metadata["changelog_uri"] = "https://github.com/dry-rb/dry-events/blob/main/CHANGELOG.md" + spec.metadata["source_code_uri"] = "https://github.com/dry-rb/dry-events" + spec.metadata["bug_tracker_uri"] = "https://github.com/dry-rb/dry-events/issues" + spec.metadata["rubygems_mfa_required"] = "true" spec.required_ruby_version = ">= 3.1.0" # to update dependencies edit project.yml - spec.add_runtime_dependency "concurrent-ruby", "~> 1.0" - spec.add_runtime_dependency "dry-core", "~> 1.0", "< 2" + spec.add_dependency "concurrent-ruby", "~> 1.0" + spec.add_dependency "dry-core", "~> 1.1" end diff --git a/project.yml b/project.yml index ee51b05..51b1762 100644 --- a/project.yml +++ b/project.yml @@ -4,10 +4,6 @@ gemspec: authors: ["Piotr Solnica"] email: ["piotr.solnica+oss@gmail.com"] summary: "Pub/sub system" - development_dependencies: - - bundler - - rake - - rspec runtime_dependencies: - [concurrent-ruby, "~> 1.0"] - - [dry-core, "~> 1.0", "< 2"] + - [dry-core, "~> 1.1"]