Files
openfoodnetwork/engines/catalog/catalog.gemspec
Luis Ramos 8a9dae0ee2 Run rubocop autocorrect
This is the result of bundle exec rubocop --auto-correct
2020-06-22 12:23:10 +01:00

16 lines
422 B
Ruby

# frozen_string_literal: true
$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