-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (42 loc) · 872 Bytes
/
Gemfile
File metadata and controls
47 lines (42 loc) · 872 Bytes
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
source 'http://rubygems.org'
#ruby '2.6.6'
gem 'unicorn'
gem 'puma'
gem 'rails', '< 6.1'
gem 'pg', '1.2.3'
gem 'meta-tags'
gem 'bootsnap'
gem 'canonical-rails'
gem 'webpacker'
group :production do
gem 'rails_12factor'
end
group :development, :test do
gem "rspec-rails"
gem 'capybara'
gem 'foreman'
gem 'pry'
gem 'listen'
end
group :test do
gem 'simplecov', '0.17'
gem 'rspec_junit_formatter'
gem 'rails-controller-testing', '1.0.5'
gem 'factory_bot_rails'
gem 'climate_control'
end
gem 'devise', '~> 4.7.1'
gem 'cancancan'
gem 'jquery-rails'
gem 'sass-rails' #, '5.0.7'
gem 'sprockets', '< 4.0'
gem 'uglifier' #, '3.2.0'
gem 'kramdown'
gem 'nokogiri'
gem 'xmlrpc'
gem 'pingback'
gem 'image_processing', '>= 1.2'
gem 'aws-sdk-s3', require: false
gem 'ancestry'
gem 'draper'
gem 'trans_forms', git: 'https://github.com/dannemanne/trans_forms.git'