forked from decidim/decidim
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdecidim-comments.gemspec
40 lines (33 loc) · 1.42 KB
/
decidim-comments.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
34
35
36
37
38
39
40
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "decidim/comments/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.version = Decidim::Comments.version
s.authors = ["Josep Jaume Rey Peroy", "Marc Riera Casals", "Oriol Gual Oliva"]
s.email = ["josepjaume@gmail.com", "mrc2407@gmail.com", "oriolgual@gmail.com"]
s.license = "AGPL-3.0"
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.0"
s.name = "decidim-comments"
s.summary = "Decidim comments module"
s.description = "Pluggable comments system for some components."
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/ Rakefile README.md))
end
end
s.add_dependency "decidim-core", Decidim::Comments.version
s.add_dependency "redcarpet", "~> 3.5", ">= 3.5.1"
s.add_development_dependency "decidim-admin", Decidim::Comments.version
s.add_development_dependency "decidim-dev", Decidim::Comments.version
end