Losen engine gemspec requirement for Dependabot

Dependabot doesn't seem to be able to resolve the version correctly. We
got this message:

```
Could not find compatible versions

Because every version of web depends on Ruby = 0.0.1
  and Gemfile depends on web >= 0,
  Ruby = 0.0.1 is required.
So, because current Ruby version is = 3.1.4,
  version solving has failed.
```
This commit is contained in:
Maikel Linke
2025-08-07 10:41:13 +10:00
parent d469552afc
commit 75c33b29d5
4 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.authors = ["developers@ofn"]
s.summary = "Catalog domain of the OFN solution."
s.required_ruby_version = File.read(File.expand_path("../../.ruby-version", __dir__)).chomp
s.required_ruby_version = ">= 1.0.0" # rubocop:disable Gemspec/RequiredRubyVersion
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.rdoc"]
s.metadata['rubygems_mfa_required'] = 'true'

View File

@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.summary = 'Provides an API stack implementing DFC semantic ' \
'specifications'
spec.required_ruby_version = File.read(File.expand_path("../../.ruby-version", __dir__)).chomp
spec.required_ruby_version = ">= 1.0.0" # rubocop:disable Gemspec/RequiredRubyVersion
spec.files = Dir["{app,config,lib}/**/*"] + ['README.md']

View File

@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.authors = ["developers@ofn"]
s.summary = "Order Management domain of the OFN solution."
s.required_ruby_version = File.read(File.expand_path("../../.ruby-version", __dir__)).chomp
s.required_ruby_version = ">= 1.0.0" # rubocop:disable Gemspec/RequiredRubyVersion
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.rdoc"]
s.metadata['rubygems_mfa_required'] = 'true'

View File

@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.authors = ["developers@ofn"]
s.summary = "Web domain of the OFN solution."
s.required_ruby_version = File.read(File.expand_path("../../.ruby-version", __dir__)).chomp
s.required_ruby_version = ">= 1.0.0" # rubocop:disable Gemspec/RequiredRubyVersion
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.rdoc"]
s.metadata['rubygems_mfa_required'] = 'true'