mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
- cookies banner - cookies policy page - cookies policy and privacy policy links in the footer
14 lines
375 B
Ruby
14 lines
375 B
Ruby
$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.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.rdoc"]
|
|
s.test_files = Dir["test/**/*"]
|
|
end
|