-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
71 lines (53 loc) · 2.52 KB
/
Gemfile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = "release/0.23-stable"
gem "decidim", git: "https://github.com/decidim/decidim.git", branch: DECIDIM_VERSION
# gem "decidim", path: "../decidim"
# gem "decidim-conferences", git: "https://github.com/decidim/decidim.git", branch: "release/0.23-stable"
# gem "decidim-consultations", git: "https://github.com/decidim/decidim.git", branch: "release/0.23-stable"
# gem "decidim-initiatives", git: "https://github.com/decidim/decidim.git", branch: "release/0.23-stable"
gem "decidim-cookies", git: "https://github.com/OpenSourcePolitics/decidim-module_cookies.git", branch: "release/0.23-stable"
gem "decidim-decidim_awesome", "~> 0.6.0"
gem "decidim-navbar_links", git: "https://github.com/OpenSourcePolitics/decidim-module-navbar_links.git", branch: "0.23.5"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git", branch: "0.23-stable"
# gem "decidim-calendar", git: "https://github.com/alabs/decidim-module-calendar"
# gem "decidim-combined_budgeting", git: "https://github.com/mainio/decidim-module-combined_budgeting"
# gem "decidim-comparative_stats", git: "https://github.com/Platoniq/decidim-module-comparative_stats"
# gem "decidim-direct_verifications", git: "https://github.com/Platoniq/decidim-verifications-direct_verifications"
# gem "decidim-homepage_interactive_map", git: "https://github.com/OpenSourcePolitics/decidim-module-homepage_interactive_map.git"
# gem "decidim-initiatives_no_signature_allowed", git: "https://github.com/OpenSourcePolitics/decidim-module-initiatives_nosignature_allowed.git"
# gem "decidim-navigation_maps", git: "https://github.com/Platoniq/decidim-module-navigation_maps"
gem "bootsnap", "~> 1.3"
gem "dotenv-rails"
gem "puma", "~> 4.3"
gem "uglifier", "~> 4.1"
gem "faker", "~> 1.8"
gem "ruby-progressbar"
gem "letter_opener_web", "~> 1.3"
gem "sprockets", "~> 3.7"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", git: "https://github.com/decidim/decidim.git", branch: DECIDIM_VERSION
# gem "decidim-dev", path: "../decidim"
end
group :development do
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.5"
end
group :production do
# gem "rubocop-rails"
gem "passenger"
gem "fog-aws"
gem "dalli"
gem "sendgrid-ruby"
gem "newrelic_rpm"
gem "lograge"
gem "sidekiq"
gem "sidekiq-scheduler"
gem "sentry-ruby"
gem "sentry-rails"
gem "sentry-sidekiq"
end