2023-05-12 13:01:12 +02:00
|
|
|
$:.push File.expand_path('lib', __dir__)
|
2017-11-05 22:16:32 +01:00
|
|
|
|
|
|
|
# Maintain your gem's version:
|
2023-05-12 13:01:12 +02:00
|
|
|
require 'foodsoft_polls/version'
|
2017-11-05 22:16:32 +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_polls'
|
2017-11-05 22:16:32 +01:00
|
|
|
s.version = FoodsoftPolls::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 = 'Polls plugin for foodsoft.'
|
|
|
|
s.description = 'Adds possibility to do polls with foodsoft.'
|
2017-11-05 22:16:32 +01:00
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
s.files = Dir['{app,config,db,lib}/**/*'] + ['Rakefile', 'README.md']
|
2017-11-05 22:16:32 +01: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'
|
2017-11-05 22:16:32 +01:00
|
|
|
end
|