forked from Platoniq/decidim-module-alternative_landing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecidim-alternative_landing.gemspec
More file actions
26 lines (19 loc) · 1005 Bytes
/
decidim-alternative_landing.gemspec
File metadata and controls
26 lines (19 loc) · 1005 Bytes
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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "decidim/alternative_landing/version"
Gem::Specification.new do |s|
s.version = Decidim::AlternativeLanding::VERSION
s.authors = ["Vera Rojman"]
s.email = ["vera@platoniq.net"]
s.license = "AGPL-3.0"
s.homepage = "https://github.com/Platoniq/decidim-module-alternative_landing"
s.required_ruby_version = ">= 2.7"
s.name = "decidim-alternative_landing"
s.summary = "Decidim Landing Page"
s.description = "A module to create better landing pages for Decidim"
s.files = Dir["{app,config,lib}/**/*", "LICENSE-AGPLv3.txt", "Rakefile", "package.json", "package-lock.json", "README.md"]
s.add_dependency "decidim-admin", Decidim::AlternativeLanding::COMPAT_DECIDIM_VERSION
s.add_dependency "decidim-core", Decidim::AlternativeLanding::COMPAT_DECIDIM_VERSION
s.add_dependency "redcarpet", "~> 3.4"
s.add_development_dependency "decidim-dev", Decidim::AlternativeLanding::DECIDIM_VERSION
end