-
Notifications
You must be signed in to change notification settings - Fork 0
/
decidim-ej.gemspec
30 lines (24 loc) · 1 KB
/
decidim-ej.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "decidim/ej/version"
Gem::Specification.new do |s|
s.version = Decidim::Ej.version
s.authors = ["David Carlos de Araújo Silva"]
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.0.4"
s.name = "decidim-ej"
s.summary = "Pushing Together integration module."
s.description = "Extends Decidim adding Pushing Together opinion research capabilities."
s.files = Dir["{app,config,lib}/**/*", "LICENSE-AGPLv3.txt", "Rakefile", "README.md"]
s.add_dependency "decidim-core", Decidim::Ej.version
s.add_dependency "httparty"
end