mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
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:
@@ -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'
|
||||
|
||||
@@ -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']
|
||||
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user