2023-05-12 13:01:12 +02:00
|
|
|
$:.push File.expand_path('lib', __dir__)
|
2015-04-10 20:18:49 +02:00
|
|
|
|
|
|
|
# Maintain your gem's version:
|
2023-05-12 13:01:12 +02:00
|
|
|
require 'foodsoft_current_orders/version'
|
2015-04-10 20:18:49 +02:00
|
|
|
|
|
|
|
# Describe your gem and declare its dependencies:
|
|
|
|
Gem::Specification.new do |s|
|
2023-05-12 13:01:12 +02:00
|
|
|
s.name = 'foodsoft_current_orders'
|
2015-04-10 20:18:49 +02:00
|
|
|
s.version = FoodsoftCurrentOrders::VERSION
|
2023-05-12 13:01:12 +02:00
|
|
|
s.authors = ['wvengen']
|
|
|
|
s.email = ['dev-voko@willem.engen.nl']
|
|
|
|
s.homepage = 'https://github.com/foodcoop-adam/foodsoft'
|
|
|
|
s.summary = 'Quick support for working on all currently active orders in foodsoft.'
|
|
|
|
s.description = ''
|
2015-04-10 20:18:49 +02:00
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
s.files = Dir['{app,config,db,lib}/**/*'] + ['Rakefile', 'README.md']
|
2015-04-10 20:18:49 +02:00
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
s.add_dependency 'rails'
|
|
|
|
s.add_dependency 'deface', '~> 1.0'
|
|
|
|
s.metadata['rubygems_mfa_required'] = 'true'
|
2015-04-10 20:18:49 +02:00
|
|
|
end
|