This repository was archived by the owner on Dec 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
75 lines (55 loc) · 1.33 KB
/
Gemfile
File metadata and controls
75 lines (55 loc) · 1.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
source 'https://rubygems.org'
ruby '2.3.5'
gem 'easy-app', git: 'https://github.com/jbox-web/easy-app.git'
gem 'easy-crud', git: 'https://github.com/jbox-web/easy-crud.git'
gem 'easy-dci', git: 'https://github.com/jbox-web/easy-dci.git'
gem 'actionform', git: 'https://github.com/jbox-web/actionform.git', require: 'action_form'
# Bundler
gem 'bundler', '>= 1.8.4'
# Configuration
gem 'dotenv-rails'
gem 'figaro'
# Authentication
gem 'bcrypt'
gem 'devise'
gem 'devise_invitable'
gem 'request_store'
# Themes
gem 'themes_on_rails'
# Deployment (DeployIt / Heroku)
gem 'rails_12factor', group: :production
# Base for Calendar management
gem 'dav4rack'
# Calendar exports
gem 'icalendar'
# Events are taggable
gem 'acts-as-taggable-on'
# Calendar permissions
gem 'pundit'
group :test, :development do
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda'
gem 'shoulda-matchers'
gem 'shoulda-context'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'capybara'
# Code coverage
gem 'simplecov'
end
group :development do
gem 'spring'
gem 'spring-commands-rspec'
gem 'turbulence'
gem 'flog'
gem 'quiet_assets'
gem 'mina'
gem 'mina-puma', require: false
gem 'mina-sidekiq', require: false
gem 'mina-scp', require: false
gem 'letter_opener_web'
gem 'brakeman'
gem 'bullet'
end