-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (29 loc) · 793 Bytes
/
Gemfile
File metadata and controls
37 lines (29 loc) · 793 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
27
28
29
30
31
32
33
34
35
36
37
source "https://rubygems.org"
ruby '2.6.5'
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim", branch: "0.19-stable" }
gem "decidim", DECIDIM_VERSION
gem "decidim-initiatives", DECIDIM_VERSION
gem "wicked_pdf"
gem "wkhtmltopdf-binary"
gem "decidim-consultations", DECIDIM_VERSION
gem 'puma'
gem 'uglifier'
gem 'faker'
gem 'sprockets', '~> 3.7.2'
group :development, :test do
gem 'byebug', platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "rspec-rails"
end
group :development do
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
end
group :production do
gem 'fog-aws'
gem 'sendgrid-ruby'
gem "passenger"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]