-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecidim-ub.gemspec
36 lines (29 loc) · 1.18 KB
/
decidim-ub.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "decidim/ub/version"
Gem::Specification.new do |s|
s.version = Decidim::Ub::VERSION
s.authors = ["Francisco Bolívar"]
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-ub"
s.summary = "A decidim ub module"
s.description = "A Decidim module to sync UB users who connect to the platform."
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::Ub::COMPAT_DECIDIM_VERSION
s.add_development_dependency "decidim-dev", Decidim::Ub::COMPAT_DECIDIM_VERSION
end