forked from AjuntamentDeTerrassa/decidim-terrassa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (40 loc) · 1.01 KB
/
Copy pathGemfile
File metadata and controls
50 lines (40 loc) · 1.01 KB
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
source "https://rubygems.org"
ruby RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/decidim/decidim", tag: "release/0.24-stable" }
gem "decidim", DECIDIM_VERSION
gem 'decidim-term_customizer',
git: 'https://github.com/mainio/decidim-module-term_customizer.git'
gem "virtus-multiparams"
gem 'puma'
gem 'uglifier'
gem 'faker'
gem "sprockets", "~> 3.7.2"
gem "geocoder", "~> 1.6.1"
gem "execjs", "~> 2.7.0"
group :development, :test do
gem 'byebug', platform: :mri
gem "decidim-dev", DECIDIM_VERSION
end
group :development do
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'spring-commands-rspec'
gem 'launchy'
end
group :production do
gem "rails_12factor"
gem "fog-aws"
gem 'dalli'
gem 'sendgrid-ruby'
gem 'newrelic_rpm'
gem "lograge"
gem "sentry-raven"
gem "sidekiq"
end
group :test do
gem "rspec-rails"
gem "database_cleaner"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]