-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
64 lines (43 loc) · 1.23 KB
/
Gemfile
File metadata and controls
64 lines (43 loc) · 1.23 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
source 'https://rubygems.org'
gem 'rails', '~> 8.1'
gem 'rails-controller-testing'
gem 'bootsnap'
# Use Puma as the app server
gem 'puma'
group :development, :test do
gem 'sqlite3'
gem 'listen'
end
gem 'simplecov', require: false, group: :test
group :production do
gem 'mysql2'
end
gem 'json'
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 3.26'
# see https://github.com/twalpole/apparition/pull/79#issuecomment-901381116
gem 'apparition', github: 'twalpole/apparition', ref: 'ca86be4d54af835d531dbcd2b86e7b2c77f85f34'
gem 'selenium-webdriver'
end
gem 'kramdown' # our markdown library, see http://kramdown.rubyforge.org/
gem 'sprockets-rails'
gem 'sassc' # For Sprockets to compile SCSS from gems (e.g., active_scaffold)
gem 'dartsass-rails'
gem 'importmap-rails'
gem 'terser'
gem 'brakeman'
gem 'bundler-audit'
# https://github.com/perfectline/validates_url
gem 'validate_url'
gem 'jquery-rails'
gem 'active_scaffold', github: 'activescaffold/active_scaffold', ref: 'bce7d9bd0309f4fece73982d6a7f660ecd7068d3'
# use devise for user auth
gem 'devise'
gem 'devise-i18n'
gem 'csv'
gem 'rqrcode'
gem 'acts_as_votable'
gem 'prawn'
gem 'rubyzip'
gem 'webrick', '~> 1.8'