forked from alabs/decidim-module-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecidim-calendar.gemspec
More file actions
23 lines (17 loc) · 901 Bytes
/
decidim-calendar.gemspec
File metadata and controls
23 lines (17 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "decidim/calendar/version"
Gem::Specification.new do |s|
s.version = Decidim::Calendar.version
s.authors = ["Mijail Rondon"]
s.email = ["mijail@riseup.net"]
s.license = "AGPL-3.0"
s.homepage = "https://github.com/alabs/decidim-module-calendar"
s.required_ruby_version = ">= 2.7"
s.name = "decidim-calendar"
s.summary = "A decidim module to add a global calendar"
s.description = "A decidim module to add calendar functionalities for participatory process, meetings, debates, consultations and external events"
s.files = Dir["{app,config,db,lib,vendor}/**/*", "LICENSE-AGPLv3.txt", "package.json", "package-lock.json", "Rakefile", "README.md"]
s.add_dependency "decidim-admin", Decidim::Calendar::DECIDIM_VERSION
s.add_dependency "decidim-core", Decidim::Calendar::DECIDIM_VERSION
end