-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecidim-decidim_ai_spam_bot.gemspec
More file actions
34 lines (28 loc) · 1.12 KB
/
decidim-decidim_ai_spam_bot.gemspec
File metadata and controls
34 lines (28 loc) · 1.12 KB
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
34
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "decidim/decidim_ai_spam_bot/version"
Gem::Specification.new do |s|
s.version = Decidim::DecidimAiSpamBot.version
s.authors = ["barbara oliveira"]
s.email = ["barbara@opensourcepolitics.eu"]
s.license = "AGPL-3.0-or-later"
s.homepage = "https://decidim.org"
s.metadata = {
"bug_tracker_uri" => "https://github.com/decidim/decidim/issues",
"documentation_uri" => "https://docs.decidim.org/",
"funding_uri" => "https://opencollective.com/decidim",
"homepage_uri" => "https://decidim.org",
"source_code_uri" => "https://github.com/decidim/decidim"
}
s.required_ruby_version = "~> 3.3"
s.name = "decidim-decidim_ai_spam_bot"
s.summary = "A decidim decidim_ai_spam_bot module"
s.description = "decidim ai spam bot."
s.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").select do |f|
(File.expand_path(f) == __FILE__) ||
f.start_with?(*%w(app/ config/ db/ lib/ LICENSE-AGPLv3.txt Rakefile README.md))
end
end
s.add_dependency "decidim-core", Decidim::DecidimAiSpamBot.version
end