mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
Better to avoid to have endpoint specific to an enterprise as we don't know the enterprise id yet on DFC side
22 lines
638 B
Ruby
22 lines
638 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.files = Dir["{app,config,lib}/**/*"] + ['README.md']
|
|
spec.test_files = Dir['spec/**/*']
|
|
|
|
spec.add_dependency 'jwt', '~> 2.2'
|
|
spec.add_dependency 'rspec', '~> 3.9'
|
|
end
|