Files
openfoodnetwork/engines/dfc_provider/dfc_provider.gemspec
Maikel Linke 75c33b29d5 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.
```
2025-08-07 12:59:32 +10:00

22 lines
662 B
Ruby

# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require "dfc_provider/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'dfc_provider'
spec.version = DfcProvider::VERSION
spec.authors = ["developers@ofn"]
spec.summary = 'Provides an API stack implementing DFC semantic ' \
'specifications'
spec.required_ruby_version = ">= 1.0.0" # rubocop:disable Gemspec/RequiredRubyVersion
spec.files = Dir["{app,config,lib}/**/*"] + ['README.md']
spec.metadata['rubygems_mfa_required'] = 'true'
end