-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecidim-hello.gemspec
29 lines (23 loc) · 952 Bytes
/
decidim-hello.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "decidim/hello/version"
Gem::Specification.new do |s|
s.version = Decidim::Hello.version
s.authors = ["quentinchampenois"]
s.email = ["[email protected]"]
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.1"
s.name = "decidim-hello"
s.summary = "A decidim hello module"
s.description = "Testing module."
s.files = Dir["{app,config,lib}/**/*", "LICENSE-AGPLv3.txt", "Rakefile", "README.md"]
s.add_dependency "decidim-core", Decidim::Hello.version
end