forked from MarsBased/decidim-file_authorization_handler
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdecidim-file_authorization_handler.gemspec
33 lines (25 loc) · 1.17 KB
/
decidim-file_authorization_handler.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "decidim/file_authorization_handler/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "decidim-file_authorization_handler"
s.version = Decidim::FileAuthorizationHandler::VERSION
s.authors = ["Daniel Gómez", "Xavier Redó", "Oliver Valls"]
s.email = ["[email protected]"]
s.summary = "CSV document + birth date verifier"
s.description = "Census uploads via csv files"
s.homepage = "https://github.com/marsbased/"
s.license = "AGPLv3"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.required_ruby_version = ">= 3.2"
DECIDIM_VERSION = "~> #{Decidim::FileAuthorizationHandler::DECIDIM_VERSION}".freeze
# rubocop: enable Lint/ConstantDefinitionInBlock
s.add_dependency "decidim", DECIDIM_VERSION
s.add_dependency "decidim-admin", DECIDIM_VERSION
# rubocop: disable Gemspec/DevelopmentDependencies
s.add_development_dependency "decidim-dev", DECIDIM_VERSION
# rubocop: enable Gemspec/DevelopmentDependencies
s.metadata["rubygems_mfa_required"] = "true"
end