mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
14 lines
391 B
Ruby
14 lines
391 B
Ruby
$LOAD_PATH.push File.expand_path('lib', __dir__)
|
|
|
|
require "catalog/version"
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "catalog"
|
|
s.version = Catalog::VERSION
|
|
s.authors = ["developers@ofn"]
|
|
s.summary = "Catalog domain of the OFN solution."
|
|
|
|
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.rdoc"]
|
|
s.test_files = Dir["test/**/*"]
|
|
end
|