-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (40 loc) · 1.27 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
git_source(:gitlab) { |repo| "https://gitlab.com/#{repo}.git" }
ruby RUBY_VERSION
DECIDIM_VERSION = '0.27.2'
# CALENDAR_REPO = { path: '../decidim-module-calendar' }.freeze
CALENDAR_REPO = { gitlab: 'nomadetec/decidim-module-calendar' }.freeze
gem 'decidim', DECIDIM_VERSION
gem 'decidim-calendar', CALENDAR_REPO
gem 'decidim-conferences', DECIDIM_VERSION
gem 'decidim-consultations', DECIDIM_VERSION
gem 'decidim-initiatives', DECIDIM_VERSION
gem 'decidim-apiauth', github: 'mainio/decidim-module-apiauth'
gem 'omniauth_openid_connect', '0.6.1'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'bootsnap', '1.13.0'
gem 'puma', '5.6.5'
gem 'uglifier', '~> 4.1'
gem 'faker', '~> 2.17'
gem 'devise-i18n'
gem 'redis', '4.7.1'
gem 'hiredis', '0.6.3'
gem 'sidekiq', '6.5.7'
gem 'whenever', require: false
group :development, :test do
gem 'byebug', '11.1.3'
gem 'decidim-dev', DECIDIM_VERSION
end
group :development do
gem 'letter_opener_web', '~> 1.3'
gem 'listen', '~> 3.1'
gem 'rails-erd'
gem 'spring', '~> 2.0'
gem 'spring-watcher-listen', '~> 2.0'
gem 'web-console', '~> 3.5'
end
group :production do
gem 'aws-sdk-s3', require: false
end