2023-05-12 13:01:12 +02:00
|
|
|
$:.push File.expand_path('lib', __dir__)
|
2019-02-02 12:40:57 +01:00
|
|
|
|
|
|
|
# Maintain your gem's version:
|
2023-05-12 13:01:12 +02:00
|
|
|
require 'foodsoft_printer/version'
|
2019-02-02 12:40:57 +01:00
|
|
|
|
|
|
|
# Describe your gem and declare its dependencies:
|
|
|
|
Gem::Specification.new do |s|
|
2023-05-12 13:01:12 +02:00
|
|
|
s.name = 'foodsoft_printer'
|
2019-02-02 12:40:57 +01:00
|
|
|
s.version = FoodsoftPrinter::VERSION
|
2023-05-12 13:01:12 +02:00
|
|
|
s.authors = ['paroga']
|
|
|
|
s.email = ['paroga@paroga.com']
|
|
|
|
s.homepage = 'https://github.com/foodcoops/foodsoft'
|
|
|
|
s.summary = 'Printer plugin for foodsoft.'
|
|
|
|
s.description = 'Add a printer queue to foodsoft.'
|
2019-02-02 12:40:57 +01:00
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
s.files = Dir['{app,config,db,lib}/**/*'] + ['Rakefile', 'README.md']
|
2019-02-02 12:40:57 +01:00
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
s.add_dependency 'rails'
|
|
|
|
s.add_dependency 'deface', '~> 1.0'
|
|
|
|
s.add_dependency 'tubesock'
|
|
|
|
s.metadata['rubygems_mfa_required'] = 'true'
|
2019-02-02 12:40:57 +01:00
|
|
|
end
|