mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36: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. ```
18 lines
505 B
Ruby
18 lines
505 B
Ruby
# frozen_string_literal: true
|
|
|
|
$LOAD_PATH.push File.expand_path('lib', __dir__)
|
|
|
|
require "web/version"
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "web"
|
|
s.version = Web::VERSION
|
|
s.authors = ["developers@ofn"]
|
|
s.summary = "Web domain of the OFN solution."
|
|
|
|
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'
|
|
end
|