foodsoft/plugins/polls/foodsoft_polls.gemspec

22 lines
691 B
Ruby
Raw Normal View History

$:.push File.expand_path('lib', __dir__)
2017-11-05 22:16:32 +01:00
# Maintain your gem's version:
require 'foodsoft_polls/version'
2017-11-05 22:16:32 +01:00
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'foodsoft_polls'
2017-11-05 22:16:32 +01:00
s.version = FoodsoftPolls::VERSION
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
s.files = Dir['{app,config,db,lib}/**/*'] + ['Rakefile', 'README.md']
2017-11-05 22:16:32 +01: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