mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
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. ```
22 lines
662 B
Ruby
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
|