-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (36 loc) · 957 Bytes
/
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
source "https://rubygems.org"
ruby '2.4.0'
gem "decidim", git: "https://github.com/AjuntamentdeBarcelona/decidim.git"
gem "decidim-debates", path: "engines/decidim-debates"
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platform: :mri
end
group :development do
gem "progressbar"
gem 'rainbow', "2.1.0"
gem "decidim-dev", git: "https://github.com/AjuntamentdeBarcelona/decidim.git"
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'faker'
gem 'capistrano'
gem 'capistrano3-puma'
gem 'capistrano-bundler', '~> 1.2'
end
group :production do
gem "puma"
gem "sidekiq"
gem "fog-aws"
gem "newrelic_rpm"
gem "dalli"
gem "sentry-raven"
gem "rack-host-redirect"
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]